Scite user Properties

July 11, 2009
Tags:

Just my preferences for ~/.SciTEUser.properties … And (of course) I use ScitePM where possible :
find.files=*.p?|*.js|*.[ch]*if PLAT_GTK find.command=grep -R –include ‘$(find.files)’ –exclude ‘*.svn*’ -i –line-number ‘$(find.what)’ .
tabsize=1indent.size=1use.tabs=0
save.session=0
font.base=$(font.monospace)font.small=$(font.monospace)font.comment=$(font.monospace)font.text=$(font.monospace)font.text.comment=$(font.monospace)font.embedded.base=$(font.monospace)font.embedded.comment=$(font.monospace)font.vbs=$(font.monospace)
position.tile=1split.vertical=0
buffers=20
# Remap some keys – # Ctrl-e = to end of line#NO Ctrl-a = to startof line
# Ctrl-` = Next bookmark# Alt-` = Toggle bookmark
# [...]

Comments Off

Rebinding Keys in SCiTE

May 26, 2008

On XCFE, some of the default (windowing system) bindings override those of SciTE (notably the Bookmarking commands).
Consult [http://scintilla.sourceforge.net/CommandValues.html] and add the following to .SciTEUser.properties :
# Remap some keys – # Ctrl-e = to end of line#NOT-YET Ctrl-a = to start of line
# Ctrl-2 = Next bookmark# Alt-2 = Toggle bookmark
user.shortcuts=\Ctrl+e|2314|\Ctrl+2|IDM_BOOKMARK_NEXT|\Alt+2|IDM_BOOKMARK_TOGGLE|
# Ctrl+a|2312|# Ctrl+a|Home|

Comments Off