?? insertkeypadkeys.em
字號:
/*
Macro commands to insert characters found on the keypad.
Because of a bug in Source Insight, the / * - + keys on the
numeric keypad do not insert those characters, even if 'NumLock' is off.
As with other macros, to use this:
1. Add this macro file to your project.
2. Run the Options->Key Assignments command.
3. Find and select the macro name(s) in the command list
4. Press 'Add' to bind an appropriate key to the macro.
Now you can run the macro command
*/
macro InsertAsterisk()
{
hbuf = GetCurrentBuf()
if (hbuf != 0)
SetBufSelText(hbuf, "*")
}
macro InsertSlash()
{
hbuf = GetCurrentBuf()
if (hbuf != 0)
SetBufSelText(hbuf, "/")
}
macro InsertPlus()
{
hbuf = GetCurrentBuf()
if (hbuf != 0)
SetBufSelText(hbuf, "+")
}
macro InsertMinus()
{
hbuf = GetCurrentBuf()
if (hbuf != 0)
SetBufSelText(hbuf, "-")
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -