Recent Posts

Pages: 1 ... 8 9 [10]
91
SlickEdit® / Re: Language Options
« Last post by gkl on November 04, 2024, 07:56:00 PM »
Dear Clark,

I guess you are referring to the dictionary, that would be a nice option to have, but what about text that you type in, let's say, Greek in a file and when you open it up in UTF-8, it would still show up as unreadable characters but it looks fine the moment you type it in with the UTF-8 encoding on?

Best Regards,
George
92
SlickEdit® / Re: Language Options
« Last post by Clark on November 02, 2024, 12:54:24 PM »
No support for other languages yet
93
SlickEdit® / Re: SFTP/OpenSSH Problem
« Last post by Clark on November 02, 2024, 12:53:31 PM »
The Windows 11 ssh doesn't work with SlickEdit's SFTP.

If you have git installed, the ssh that comes with it will work.

Or you can download ssh.zip from here:

https://www.dropbox.com/scl/fi/ew5lg2r7dlpooqwivqqo6/ssh.zip?rlkey=xjgv6cgqgwnyh1lcakhy8sge6&st=nj5hdwr7&dl=0
94
SlickEdit® / Re: Language Options
« Last post by Dan on November 02, 2024, 02:22:05 AM »
I don't think that there is a way to change the dictionary to UK English.

Clark will know for sure about that and your Unicode question.
95
SlickEdit® / Language Options
« Last post by gkl on November 02, 2024, 01:35:55 AM »
Dear All,

Can I change the language for which SlickEdit does spell checking - e.g. from English (US) to English (UK)? Can I get it to do spell checking for multiple languages, e.g. English and Greek? Also, when I type non-Latin characters, although I am on UTF-8 encoding for the file, I get unreadable characters rather than what I type. Is there a way to fix this?

Best Regards,
George
96
SlickEdit® / SFTP/OpenSSH Problem
« Last post by gkl on November 02, 2024, 01:33:51 AM »
Dear All,

I am on Windows 11 running SlickEdit Pro 2022 (v27.0.2.0 64-bit Qt5). I have OpenSSH installed and the configuration as per instructions for the FTP functionality. SFTP works fine on FTP clients as well as from terminal, but in SlickEdit it gives the following message: Cannot initialise SFTP: Timed out waiting for SFTP server version. How can I fix this?

Best Regards,
George
97
Features and/or Improvements / Re: AI code generator integrations
« Last post by Graeme on November 01, 2024, 03:05:58 AM »
You could have vscode running side by side with slickedit and write a slick macro to switch to vscode passing the current file, line number and column

code.exe --goto _mdi.p_child.p_buf_name : _mdi.p_child.p_line : _mdi.p_child.p_col

98
Features and/or Improvements / Re: AI code generator integrations
« Last post by adsouza on October 29, 2024, 08:50:57 PM »
I'd like to see github copilot integration with slickedit asap. Just got an enterprise license for copilot and I'd be forced to go to visual studio code if I want to use it.
99
SlickEdit® / Re: Alias expansion with maco call
« Last post by vandermyer on October 25, 2024, 08:19:35 AM »
Thanks Clarke. Work nicely!
100
SlickEdit® / Re: Alias expansion with maco call
« Last post by Clark on October 24, 2024, 02:39:46 PM »
That won't work for multiple reasons. There is a global scope built-in upcase() function but %\m doesn't support calling global built-in functions (design flaw in Slick-C). Also, the first % will terminate the function call. "%\m upcase %" is what gets parsed and no arguments are passed to upcase.

Put the following code in a .e file and load it. Maybe call the file "insert_upcase_bufname.e".

_str insert_upcase_bufname() {
   return upcase(p_buf_name);
}

Then %\m insert-upcase-bufname% will insert the buffer name in upper case.
Pages: 1 ... 8 9 [10]