Compare commits

..

No commits in common. "ce017fd37cc7b007adfb3377f9142793be8fdf58" and "49e373fe9a07480d9ea683d81772c05ce5da2f32" have entirely different histories.

3 changed files with 8 additions and 11 deletions

15
flake.lock generated
View file

@ -6,17 +6,14 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1760366615, "lastModified": 1760318820,
"narHash": "sha256-qGWNl+UQLvdFl8AAgywOHthizfKovk8az1xhRhQeVn8=", "narHash": "sha256-3ETm+AZ/UEU0OYFSYviMSv/Ov4BN1cEsBH6KNGuTYS4=",
"owner": "iofq", "path": "/home/e/dev/dart.nvim",
"repo": "dart.nvim", "type": "path"
"rev": "5fac43b0f7b5500c69a51a3717aef8ccceacd178",
"type": "github"
}, },
"original": { "original": {
"owner": "iofq", "path": "/home/e/dev/dart.nvim",
"repo": "dart.nvim", "type": "path"
"type": "github"
} }
}, },
"flake-compat": { "flake-compat": {

View file

@ -13,7 +13,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
dart = { dart = {
url = "github:iofq/dart.nvim"; url = "path:/home/e/dev/dart.nvim";
}; };
nvim-treesitter-main = { nvim-treesitter-main = {
url = "github:iofq/nvim-treesitter-main"; url = "github:iofq/nvim-treesitter-main";

View file

@ -35,7 +35,7 @@ vim.api.nvim_create_autocmd('FileType', {
group = vim.api.nvim_create_augroup('difftool', { clear = true }), group = vim.api.nvim_create_augroup('difftool', { clear = true }),
callback = function(event) callback = function(event)
local function exec(fmt, str) local function exec(fmt, str)
return os.execute(string.format(fmt, str)) os.execute(string.format(fmt, str))
end end
local function refresh() local function refresh()
local qf = vim.fn.getqflist() local qf = vim.fn.getqflist()