Skip to content

Commit 1f056e7

Browse files
committed
fix: issue where terminals could not be opened from the buffers source, closes #599
1 parent 5c209e5 commit 1f056e7

File tree

2 files changed

+30
-8
lines changed

2 files changed

+30
-8
lines changed

lua/neo-tree/sources/common/commands.lua

+3
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,9 @@ local open_with_cmd = function(state, open_cmd, toggle_directory, open_file)
489489
local function open()
490490
M.revert_preview()
491491
local path = node.path or node:get_id()
492+
if node.type == "terminal" then
493+
path = node:get_id()
494+
end
492495
if type(open_file) == "function" then
493496
open_file(state, path, open_cmd)
494497
else

release.sh

+27-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,38 @@
11
#/bin/bash
2-
VERSION=$1
3-
MAJOR_VERSION="v2.x"
2+
REPO="nvim-neo-tree/neo-tree.nvim"
3+
LAST_VERSION=$(curl --silent "https://api.github.com/repos/$REPO/releases/latest" | jq -r .tag_name)
4+
echo "LAST_VERSION=$LAST_VERSION"
5+
MAJOR=$(cut -d. -f1 <<<"$LAST_VERSION")
6+
MINOR=$(cut -d. -f2 <<<"$LAST_VERSION")
7+
echo
8+
9+
RELEASE_BRANCH="${1:-v${MAJOR}.x}"
10+
echo "RELEASE_BRANCH=$RELEASE_BRANCH"
11+
NEXT_VERSION=$MAJOR.$((MINOR+1))
12+
NEW_VERSION="${2:-${NEXT_VERSION}}"
13+
echo "NEW_VERSION=$NEW_VERSION"
14+
echo
15+
16+
read -p "Are you sure you want to publish this release? " -n 1 -r
17+
echo # (optional) move to a new line
18+
if [[ ! $REPLY =~ ^[Yy]$ ]]
19+
then
20+
[[ "$0" = "$BASH_SOURCE" ]] && exit 1 || return 1 # handle exits from shell or function but don't exit interactive shell
21+
fi
22+
423
git fetch
524
git checkout main
625
git pull
7-
echo "Merging to ${MAJOR_VERSION}"
8-
git checkout $MAJOR_VERSION
26+
echo "Merging to ${RELEASE_BRANCH}"
27+
git checkout $RELEASE_BRANCH
928
git pull
1029
if git merge --ff-only origin/main; then
1130
git push
12-
git tag -a $VERSION -m "Release ${VERSION}"
13-
git push origin $VERSION
31+
git tag -a $NEW_VERSION -m "Release ${NEW_VERSION}"
32+
git push origin $NEW_VERSION
1433
echo "Creating Release"
15-
gh release create $VERSION --title "Release $VERSION" --notes ""
34+
gh release create $NEW_VERSION --generate-notes
1635
else
17-
echo "RELEASE FAILED! Could not fast-forward release to $MAJOR_VERSION"
36+
echo "RELEASE FAILED! Could not fast-forward release to $RELEASE_BRANCH"
1837
fi
1938
git checkout main

0 commit comments

Comments
 (0)