Skip to content

Commit

Permalink
fix: send tag absolute path to command instead of short path
Browse files Browse the repository at this point in the history
  • Loading branch information
cbochs committed Apr 3, 2024
1 parent 261d45b commit 34b8f47
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lua/grapple/tag.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@ function Tag:select(command)
local App = require("grapple.app")
local app = App.get()

local short_path = Path.fs_short(self.path)

command = command or app.settings.command
command(short_path)
command(self.path)

if self.cursor then
local current_cursor = vim.api.nvim_win_get_cursor(0)
Expand Down

0 comments on commit 34b8f47

Please sign in to comment.