william

Keep Calm and Markdown.

nvim 打开当前光标下文件

有时我们需要临时配置或者修改文件,一般的做法是进入 visual 模式然后使用命令 gf 打开当前文件。这样的做法其实有点冗余,特别是当我们在线上排查问题时,希望能快速打开光标下的文件。

为此,我们可以定义一个函数,然后绑定快捷键即可迅速打开文件了

  • 定义一个函数 JumpOrCreateFile

    • 可以自动识别文件路径
    • 如果文件不存在,则提醒我们是否需要创建
  • 绑定快捷键 gf 方便操作

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
vim.cmd([[
nnoremap <silent> gf :call JumpOrCreateFile()<CR>
function! JumpOrCreateFile()
    " Get the filename under the cursor
    let filename = expand("<cfile>")

    "--------------------------------------------------------------------------
    " split to get filename path
    if filename =~# ':'
        let expanded_filename = expand(split(filename, ":")[1])
    elseif filename =~# ','
        let expanded_filename = expand(split(filename, ",")[1])
    elseif filename =~# '='
        let expanded_filename = expand(split(filename, "=")[1])
    else
        let expanded_filename = expand(filename)
    endif
    "--------------------------------------------------------------------------

    " Check if the file path starts with "./"
    if expanded_filename =~# '^\.\/'
        " Get the current directory of the editing file
        let current_directory = expand('%:p:h')

        " Create the full path by appending the relative file path
        let expanded_filename = current_directory . '/' . expanded_filename
    endif

    " Check if the file exists
    if !filereadable(expanded_filename)
        " Prompt the user for file creation with the full path
        let choice = confirm('File does not exist. Create "' . expanded_filename . '"?', "&Yes\n&No", 1)
        " Handle the user's choice
        if choice == 1
            " Create the file and open it
            echohl WarningMsg | echo 'Created New File: ' . expanded_filename | echohl None
            execute 'edit ' . expanded_filename
        endif
    else
        " File exists, perform normal gf behavior
        echohl ModeMsg | echo 'Open File: ' . expanded_filename | echohl None
        " execute 'normal! gf'
        execute 'edit ' . expanded_filename
    endif
endfunction
]])

c++ hash map

我们在组织不同信号、不同策略时,往往需要一个容器存放对应合约标识的容器。这个容器要求具有一定的扩展性(即事先无法知晓容器大小),具有良好的插入效率、以及较高性能的查找性能。对于一般的算法,我们直接使用标准库里的哈希容器即可,这包括 std::unordered_map

然后,对于一个低延迟的交易系统,我们总是对性能有着极致的渴望,尽力开发性的数据容器,提升查找性能。

    1. 对于特化容器,如 <int, typename T>,可以更加快速的实现查找
    1. 对于较大对象,如 <std::string, typename T>, 则尽量避免运行期的构造开销,例如在确认不同的合约标识肯定的唯一情况下,可以大胆使用类型转化,直接 castint 类型。

nvim 基于buffer的文本补全

nvim 可以通过插件lsp实现基于编程语法的自动补全。而对于一般的文本,lsp 就无助于事了。这时候我们需要一个基于文本分析的自动补全功能。这个可以通过 echasnovski/mini.nvim 来实现

nvim 自动备份 lazy lock.json

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
-- backup: lazy-lazy.json
local lazy_cmds = vim.api.nvim_create_augroup('lazy_cmds', {clear = true})
local root = os.getenv("HOME") .. "/.config/nvim/lazy"
local snapshot_dir = root .. '/plugin-snapshot'
os.execute("mkdir " .. snapshot_dir)
local lockfile = root .. '/lazy-lock.json'
vim.api.nvim_create_user_command(
    'BrowseSnapshots',
    'edit ' .. snapshot_dir,
    {}
)
vim.api.nvim_create_autocmd('User', {
    group = lazy_cmds,
    pattern = 'LazyUpdatePre',
    desc = 'Backup lazy.nvim lockfile',
    callback = function(event)
        vim.fn.mkdir(snapshot_dir, 'p')
        local snapshot = snapshot_dir .. os.date('/%Y-%m-%dT%H:%M:%S.lazy-lock.json')
        vim.loop.fs_copyfile(lockfile, snapshot)
    end,
})
  • :Lazy restore
0%