{'ahmedkhalf/jupyter-nvim', run=vim.cmd[[UpdateRemotePlugins]] }
env LANG=zh_CN.UTF-8 LANGUAGE=zh_CN:en_US wine /home/josh/.wine/drive_c/Program\ Files\ (x86)/DingTalkLite/main/current/DingTalkLite.exe
Dec 15, 2023開啟終端機 nvim_open_term :::success nvim_open_term({buffer}, {opts}) Open a terminal instance in a buffer By default (and currently the only option) the terminal will not be connected to an external process. Instead, input send on the channel will be echoed directly by the terminal. This is useful to display ANSI terminal sequences returned as part of a rpc message, or similar. Note: to directly initiate the terminal using the right size, display the buffer in a configured window before calling this. For instance, for a floating display, first create an empty buffer using |nvim_create_buf()|, then display it using |nvim_open_win()|, and then call this function. Then |nvim_chan_send()| can be called immediately to process sequences in a virtual terminal having the intended size. Parameters: ~ • {buffer} the buffer to use (expected to be empty)
May 4, 2023光標移動move :::success h 光標左移 同 Left 鍵 j 光標下移 同 Down 鍵 k 光標上移 同 Up 鍵 l 光標右移 同 Right 鍵 CTRLF 下一頁 CTRLB 上一頁 CTRLU 上移半屏 CTRLD 下移半屏
Apr 28, 2023visual mode操作 :::success The operators that can be used are: ~ switch case |v_~| d delete |v_d| c change (4) |v_c| y yank |v_y| > shift right (4) |v_>| < shift left (4) |v_<| ! filter through external command (1) |v_!|
Apr 20, 2023or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up