Maximus5 / ConEmu

Customizable Windows terminal with tabs, splits, quake-style, hotkeys and more
https://conemu.github.io/
BSD 3-Clause "New" or "Revised" License
8.59k stars 572 forks source link

Great Editor for ConEmu #133

Closed Gavin-Holt closed 9 years ago

Gavin-Holt commented 9 years ago

Hi

I would like to recommend FTE as a great editor to use in ConEmu. Their sourceforge repo includes compiled binaries for windows (http://sourceforge.net/projects/fte/files/fte/fte-20050108/). I don't know which compiler was used but this version behaves very nicely in ConEmu:

Download all the files, you will need the -common.zip if you want to do any customization. The documentation is sparse and the project is not current, but the speed is exhilarating!

Those who want to customize the editor can change the menus, indentation, keyboard shortcuts - both at default level and by file type. Once you get into it the macro-scripting is useful if frustrating. To save your time see my best examples below:

sub MyBlockSel { PushGlobalBookmark; ?MoveBlockStart; MoveLineStart; BlockMarkStream; PopGlobalBookmark; MoveLineEnd; MoveNext; BlockMarkStream; }

sub MyBlockPaste { # Re-selects for repeated block actions BlockPasteStream; SavePos; MoveBlockEnd; PushGlobalBookmark; MovePrevPos; BlockMarkStream; PopGlobalBookmark; MovePrev; BlockMarkStream; }

sub MyBlockYank { ?BlockKill ; KillLine }

sub MyBlockDup { MyBlockSel; BlockCopy; MyBlockPaste; }

item "Show &DOS\tAlt+F5" { ShowEntryScreen } item "Find &Strip...\tShift+F9" { IncrementalSearch } item "Find &in Files...\tCtrl+Alt+F9" { Compile "Findstr /n /s 'seach text' FileSpec" } item "&spell..." { FileSave; RunProgram " P:\MyPrograms\EDITORS\Addins\Hunspell\hunspell.exe -d P:\MyPrograms\EDITORS\Addins\Dictionary\en_GB -p P:\MyPrograms\EDITORS\Addins\Dictionary\USER_DICT.dic " . $FilePath ; FileReload; }

The only Gotcha I have found with this version is a failure to recognize Alt+Ctrl+Alpha key combinations.

This editor is so fast and has so much power it's difficult to believe I missed it for the last 15 years! Many thanks to Marco Maceko.

Have fun

Gavin

Maximus5 commented 9 years ago

What is the sense of the issue?

Anyone may use any editor he prefers. My personal favorite is Far Manager which is highly customizable, support true-color schemes, has powerful syntax colorization with source outlining, and much more.

Many users prefer vim by their unux experience. And of course notepad++ and Sublime text.

All these editors and managers are live projects.

Gavin-Holt commented 9 years ago

Sorry if this is in the wrong place. I just wanted to share a good experience of ConEmu + FTE.

A list of software that works well with ConEmu would be interesting.

Gavin On 7 May 2015 21:36, "Maximus5" notifications@github.com wrote:

What is the sense of the issue?

Anyone may use any editor he prefers. My personal favorite is Far Manager which is highly customizable, support true-color schemes, has powerful syntax colorization with source outlining, and much more.

Many users prefer vim by their unux experience. And of course notepad++ and Sublime text.

All these editors and managers are live projects.

— Reply to this email directly or view it on GitHub https://github.com/Maximus5/ConEmu/issues/133#issuecomment-100011336.

Maximus5 commented 9 years ago

I see. Actually there are thousands of well written console applications. And many GUI application works well in ConEmu too.