From 35b0e0596532bcd1c192401d6b37c986e4da054b Mon Sep 17 00:00:00 2001 From: iofq Date: Wed, 15 Oct 2025 19:41:23 -0500 Subject: [PATCH 1/2] fix local flake path --- flake.lock | 15 +++++++++------ flake.nix | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 6e5f8e8..76ad5f1 100644 --- a/flake.lock +++ b/flake.lock @@ -6,14 +6,17 @@ "nixpkgs": "nixpkgs" }, "locked": { - "lastModified": 1760318820, - "narHash": "sha256-3ETm+AZ/UEU0OYFSYviMSv/Ov4BN1cEsBH6KNGuTYS4=", - "path": "/home/e/dev/dart.nvim", - "type": "path" + "lastModified": 1760366615, + "narHash": "sha256-qGWNl+UQLvdFl8AAgywOHthizfKovk8az1xhRhQeVn8=", + "owner": "iofq", + "repo": "dart.nvim", + "rev": "5fac43b0f7b5500c69a51a3717aef8ccceacd178", + "type": "github" }, "original": { - "path": "/home/e/dev/dart.nvim", - "type": "path" + "owner": "iofq", + "repo": "dart.nvim", + "type": "github" } }, "flake-compat": { diff --git a/flake.nix b/flake.nix index ed8d02c..a9cc1ad 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ inputs.nixpkgs.follows = "nixpkgs"; }; dart = { - url = "path:/home/e/dev/dart.nvim"; + url = "github:iofq/dart.nvim"; }; nvim-treesitter-main = { url = "github:iofq/nvim-treesitter-main"; From ce017fd37cc7b007adfb3377f9142793be8fdf58 Mon Sep 17 00:00:00 2001 From: iofq Date: Wed, 15 Oct 2025 19:53:48 -0500 Subject: [PATCH 2/2] fix os.execute return --- nvim/after/plugin/autocmd.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/after/plugin/autocmd.lua b/nvim/after/plugin/autocmd.lua index 18af3e9..e22f2b7 100644 --- a/nvim/after/plugin/autocmd.lua +++ b/nvim/after/plugin/autocmd.lua @@ -35,7 +35,7 @@ vim.api.nvim_create_autocmd('FileType', { group = vim.api.nvim_create_augroup('difftool', { clear = true }), callback = function(event) local function exec(fmt, str) - os.execute(string.format(fmt, str)) + return os.execute(string.format(fmt, str)) end local function refresh() local qf = vim.fn.getqflist()