File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,7 @@ local M = {}
2
2
3
3
local default_counter
4
4
5
- -- FIXME: Switch to joinpath for more elegance once we stop supporting <0.10
6
- local DATA_PATH = vim .fn .stdpath (" data" ) .. " /debugprint"
5
+ local DATA_PATH = vim .fs .joinpath (vim .fn .stdpath (" data" ), " debugprint" )
7
6
local COUNTER_FILE = DATA_PATH .. " /counter"
8
7
9
8
--- @return string
Original file line number Diff line number Diff line change 74
74
-- within one NeoVim session
75
75
vim .notify_once = vim .notify
76
76
77
- -- FIXME: Switch to joinpath for more elegance once we stop supporting <0.10
78
- local DATA_PATH = vim .fn .stdpath (" data" ) .. " /debugprint"
77
+ local DATA_PATH = vim .fs .joinpath (vim .fn .stdpath (" data" ), " debugprint" )
79
78
local COUNTER_FILE = DATA_PATH .. " /counter"
80
79
81
80
local ALWAYS_PROMPT_KEYMAP = {
You can’t perform that action at this time.
0 commit comments