Scite
My editor of choice is Scite and there's been an enhancement with one of the 'packages' I use that just drives me crazy.
Autocompletion of quotes and brackets. This feature autocompletes your quotes, such that everytime your enter a single or double quote " the editor will automatically put in the second ".
Feature drives me crazy.
---
-- SciTE Lua OnChar extension function.
-- Matches characters specified in char_matches if the editor pane has focus.
function _G.OnChar(c)
if char_matches[c] and editor.Focus then
-- editor:InsertText( -1, char_matches[c] )
-- I hate this feature, commented out
end
end
There are no comments attached to this item.