Recent Posts

Pages: [1] 2 3 ... 10
1
SlickEdit® / Re: Tool window problem with special characters
« Last post by jorick on March 20, 2025, 03:38:13 PM »
That worked!  Thanks!
2
SlickEdit® / Re: Tool window problem with special characters
« Last post by Clark on March 19, 2025, 10:12:20 PM »
Tools>Options>Languages>SlickEdit Languages>Process>View

Turn off "Special Characters" check box
3
SlickEdit® / Tool window problem with special characters
« Last post by jorick on March 19, 2025, 07:50:35 PM »
How do I switch off special characters in the tool windows (Search Results, References, Terminal, Build, and Output)?  I don't want the paragraph character to show at the end of every line.

I have special characters enabled for SBCS/DBCS source windows.
=====
SlickEdit Pro 2024 (v29.0.1.0)

Serial number: [redacted]
Licensed number of users: Single user
License file: /Library/Application Support/SlickEdit/29/slickedit.lic

Build Date: February 10, 2025
Emulation: CodeWright

OS: macOS
OS Version: 15.3.2
Processor Architecture: Apple M3 Max 64 bit (14 cores)

Memory: 99% Load, 36590MB/36864MB Virtual
Shell Information: "/Applications/SlickEditPro2024.app/Contents/MacOS/secsh" -i
Screen Size: 1728 x 1117 (0 0), 2560 x 1440 (1728 -1440)

Project Type: Gnuc
Language: .c (C/C++)
Encoding: ACP (30001)

Installation Directory: /Applications/SlickEditPro2024.app/Contents/
Configuration Directory: /Users/ricky/Library/Application Support/SlickEdit/29.0.1/
Spill File: /tmp/slkspill.ricky.92013
4
SlickEdit® / Re: SlickEdit accidentally crashed after installing the hotfix3.
« Last post by bsun on March 10, 2025, 11:24:18 PM »
Sent.  :)
5
SlickEdit® / Re: SlickEdit accidentally crashed after installing the hotfix3.
« Last post by Clark on March 10, 2025, 01:40:49 PM »
email the attachment to support
6
SlickEdit® / SlickEdit accidentally crashed after installing the hotfix3.
« Last post by bsun on March 10, 2025, 07:18:54 AM »
Hi,
After installing the hotfix3, my SlickEdit accidentally crashed once with a "Slick-C Error" (capture attached).
I want to upload a capture, but it seems that I can't upload the attachment now.
7
SlickEdit® / Re: C and C++ files in the project
« Last post by Clark on March 07, 2025, 02:48:28 PM »
You'll need to add a Rule for .c files which has different options. I manually added the rule to the .vpj file. I don't think this can be done through the GUI. Attached is a sample GNU C/C++ project where I've added a rule for .c files so I can use a different compiler (gcc instead of g++). You can change the options specified too. See gnucpp1.vpj.
8
SlickEdit® / C and C++ files in the project
« Last post by Bwana The Bigg on March 07, 2025, 09:35:25 AM »
Hello!
I have a project, some of the source files are in C, some in C++. For compilation, I set "CC" in the "Build:GNU C Options:Compiler" field and C files are compiled with gcc, and C++ files with g++. However, C files should be compiled with one set of options, and C++ files with others. Can I somehow set separate options for C and C++ files?
9
SlickEdit® / Re: too much spam
« Last post by Clark on March 07, 2025, 02:09:09 AM »
"Report to moderator" isn't working. Pretty much all the spam is under General programming. Made that forum read-only
10
SlickEdit® / Re: Adding or removing menus and forms exclusively via config files
« Last post by Graeme on March 06, 2025, 10:23:57 PM »
Sorry for the late reply.  I suspect modifying xml files is not a good idea.  You might need to package your stuff as a hotfix.  If you have to cope with multiple versions of slickedit it can get even more complicated.  I think you can detect the version of slick at runtime but maybe not at compile time, so you could write some slick code that loaded particular files according to the runtime version.

A long time ago I posted some macros that replaced some of the slick built in menus with extra things but the user had to manually set up a #define to indicate the version of slickedit.

Code: [Select]
#define SLICK_V13


#ifdef SLICK_V12

_menu _projecttb_folder_menu {
   submenu "&More","","","" {
      "Add &new file","projecttb-add-new-file-here","","","Add new file to project";
      "Add new item from &template","projecttb-add-template-item-here","","","Add item to project from template";
      "New &folder","projecttb-add-folder-here","","","Create new folder here";
      "&Explore","projecttb-explore-from-here","","","Shell explorer";
      "&Open file","projecttb-open-from-here","","","Open file to edit";
      "-","","","","";
      "She&ll from here","projecttb_shell_from_here","","","Open OS shell";
      "Folder &MRU","projecttb-show-folder-MRU","","","";
      "Add to folder MR&U","projecttb-add-to-folder-MRU","","","";
      "Change &directory to here","projecttb-cd-to-here","","","";
      "-","","","","";
      "Copy pathname","projecttb-copy-path","","","";
      "Copy file pathname","projecttb-copy-filename-full-path","","","";
      "-","","","","";
      "&Project properties","projecttb-project-properties","","","";
   }
   submenu "&Add","","Displays Add To Folder menu","ncw" {
      "New File...","projecttbAddNewFile","","","";
      "Files...","projecttbAddFiles","","","";
      "Tree...","projecttbAddTree","","","";
      "Wildcard...","projecttbAddWildcard","","","";
      "Folder...","projecttbAddFolder","","","";
   }
   "-","","","","";
   "Move &Up","projecttbMoveUp","","","";
   "Move &Down","projecttbMoveDown","","","";
   "Cut\tCtrl+X","projecttbCut","","","";
   "Copy\tCtrl+C","projecttbCopy","","","";
   "Paste\tCtrl+V","projecttbPaste","","","";
   "Remove\tDel","projecttbRemove","","","";
   "-","","","","";
   "Folder &Properties...","projecttbFolderProperties","","","";
}

Pages: [1] 2 3 ... 10