Skip to content

Commit

Permalink
v0.0.8a
Browse files Browse the repository at this point in the history
  • Loading branch information
subnut committed Dec 2, 2020
1 parent d67005d commit 473b0a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .binary_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.8
v0.0.8a
4 changes: 2 additions & 2 deletions binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from simple_websocket_server import WebSocket
from simple_websocket_server import WebSocketServer

BUILD_VERSION = "v0.0.8"
BUILD_VERSION = "v0.0.8a"
TEMP_FILEPATH = os.path.join(tempfile.gettempdir(), "nvim-ghost.nvim.port")
WINDOWS = os.name == "nt"
LOCALHOST = "127.0.0.1" if WINDOWS else "localhost"
Expand Down Expand Up @@ -409,7 +409,7 @@ def get_handle(self):
argparser = ArgParser()
argparser.parse_args()

if START_SERVER and neovim_focused_address is None:
if START_SERVER and not PERSIST and neovim_focused_address is None:
sys.exit("NVIM_LISTEN_ADDRESS environment variable not set.")

if START_SERVER:
Expand Down

0 comments on commit 473b0a1

Please sign in to comment.