我最近一直在使用 Visual Studio 代码,并且像很多 IDE 一样,您可以习惯使用 CTRL-S 来保存,因为它比使用“esc :w”更快 - 如果您像我一样使用 vim 绑定。
但是,当我现在在 VScode 之外使用普通终端窗口并使用 vim 时,我忘记了我不在 VS 代码中,我使用 ctrl-s,不幸的是它似乎冻结了终端窗口,我还没有找到恢复它的方法. 目前我必须杀死终端窗口,然后恢复文件。
如何从ctrl-s
冻结中恢复?
我最近一直在使用 Visual Studio 代码,并且像很多 IDE 一样,您可以习惯使用 CTRL-S 来保存,因为它比使用“esc :w”更快 - 如果您像我一样使用 vim 绑定。
但是,当我现在在 VScode 之外使用普通终端窗口并使用 vim 时,我忘记了我不在 VS 代码中,我使用 ctrl-s,不幸的是它似乎冻结了终端窗口,我还没有找到恢复它的方法. 目前我必须杀死终端窗口,然后恢复文件。
如何从ctrl-s
冻结中恢复?
在我的 chrome 浏览器中,我使用书签以及其中包含书签的书签文件夹。
像这样:
这是关于捕获其中一个具有 8 个书签的文件夹的外观,当单击该文件夹并显示其中的所有书签时。我想捕捉下拉列表的外观(主要是在我的案例中查看所有不同的网站图标)。如果我使用延迟功能,然后使用下拉菜单,则在时间延迟后根本不会捕获它,并且菜单仍然打开。
更严重的是,如果我使用鼠标并先单击打开菜单,然后继续使用 shift-print screen,它实际上会使我的桌面环境崩溃,现在,例如,所有窗口窗格标题都显示十字准线,但我无法“逃避” ' 以任何方式。我目前使用键盘 ctrl-alt-delete 方法注销并重新登录以解决此问题。呵呵。
我已经尝试过 printscreen 窗口并按区域打印和延迟,但这些都没有帮助。延迟有效,但没有捕捉到我在截屏时打开的下拉菜单。
我使用按钮或用户界面,但亮度没有改变。
我需要更改什么才能使亮度正常工作?
如果相关,我正在使用东芝超极本。
当我尝试使用 vim 时,我收到所有这些命令的错误(尽管 vim 然后工作):
autocmd BufWritePre *.rb :%s/\s\+$//e
set filetype off
filetype plugin on
filetype indent on
syntax on " Turn on syntax highlighting
match ExtraWhitespace /\s\+$/
autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
autocmd InsertLeave * match ExtraWhitespace /\s\+$/
autocmd BufWinLeave * call clearmatches()
let mapleader = ","
set foldmethod=indent "fold based on indent
set foldnestmax=10 "deepest fold is 10 levels
set nofoldenable "dont fold by default
set foldlevel=1 "what I use
let loaded_matchparen = 1 " MDD Turn off matching bracket " Ubuntu14 filetype plugin indent on " required
如果我在我的 .vimrc 中注释掉这些行,我不会收到任何错误。
但我怀疑我现在可能已经“丢失”了这些设置。
在 Ubuntu 13 中,它们或 vim 中是否有不同的形式?
错误:
三类:
细节:
$ vi .vimrc
Error detected while processing /home/durrantm/.vimrc:
line 20:
E319: Sorry, the command is not available in this version: autocmd BufWritePre *.rb :%s/\s\+$//e
line 24:
E519: Option not supported: filetype
line 25:
E319: Sorry, the command is not available in this version: filetype plugin on
line 26:
E319: Sorry, the command is not available in this version: filetype indent on
line 27:
E319: Sorry, the command is not available in this version: syntax on " Turn on syntax highlighting
line 37:
E319: Sorry, the command is not available in this version: match ExtraWhitespace /\s\+$/
line 38:
E319: Sorry, the command is not available in this version: autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
line 39:
E319: Sorry, the command is not available in this version: autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@
<!$/
line 40:
E319: Sorry, the command is not available in this version: autocmd InsertLeave * match ExtraWhitespace /\s\+$/
line 41:
E319: Sorry, the command is not available in this version: autocmd BufWinLeave * call clearmatches()
line 48:
E319: Sorry, the command is not available in this version: let mapleader = ","
line 52:
E518: Unknown option: foldmethod=indent
line 53:
E518: Unknown option: foldnestmax=10
line 54:
E518: Unknown option: nofoldenable
line 55:
E518: Unknown option: foldlevel=1
line 57:
E319: Sorry, the command is not available in this version: let loaded_matchparen = 1 " MDD Turn off matching brac
ket highlighting.
line 58:
E319: Sorry, the command is not available in this version: filetype plugin indent on