新建项目 com + shift +N 新建文件 com + N 偏好设置 通用 com + , 跳到指定行 com + L 当前行加断点 com + \ 移动编辑区最上方 com + 上 移动编辑区最下方 com + 下 移动光标所在行最左边 com + 左 移动光标所在最右边 com + 右 向前/后跳一个单词 option + 左&右 向前删除一个单词 option + delete 删除光标所在行后面的所有字符 contro…
转自 http://apps.hi.baidu.com/share/detail/14468670 Option Explicit Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long) Private Const VK_ADD As Long = &H6B '加号…
Option Explicit Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long) Private Const VK_ADD As Long = &H6B '加号键Private Const VK_APPS As Long = &H5D 'Applica…
阿里云Windows系统服务器运维的过程中,有时候会遇到实例开机后一直处于蓝色背景屏幕(非蓝屏 crash )状态.此时你发现鼠标可以任意正常移动,但是屏幕上却没有任何的图标可以供操作,这种情况可能是由于 explorer.exe 异常或被删除导致的. explorer.exe 是 Windows 程序管理器或者文件资源管理器,它用于管理 Windows 图形壳,包括桌面和文件管理,该程序的异常或删除会导致 Windows 图形界面无法使用. 遇到此问题相应的解决办法是重新启动 explorer…
目录 Idea Live Template总结 一.演示 二.详细介绍 2.1 类型 2.2设置(win默认快捷键win+alt+s) 2.3 快捷键 2.4 实战 Idea Live Template总结 live template是idea中提高效率的利器之一,以前看过一些教程,平时经常在使用,减少了我很多繁复的工作,但是没有系统的去整理过,最近准备系统的整理下,主要是自己平时用到的和官方文档的说明,如果有不正确的地方. 定义: Live template可以让你快速.高效.正确的插入平时经…