⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tabinden.em

📁 source insight的EM文件 可以扩展SI的宏功能
💻 EM
字号:
/*   T A B   O R   I N D E N T   */
/*-------------------------------------------------------------------------
    If selection is extended, indent all the lines. 
    If selection is just an insertion point, insert a tab.
-------------------------------------------------------------------------*/
macro TabOrIndent()
{
	hwnd = GetCurrentWnd()
	if (hwnd != 0)
		{
		sel = GetWndSel(hwnd)
		if (sel.fExtended)
			Indent_Right
		else
			Tab
		}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -