Skip to content

Commit 32fb1b8

Browse files
committed
Fixed typos, and changed background tip message for uniformity
1 parent 50533b0 commit 32fb1b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code-nautilus.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# VSCode Nautilus Extension
22
#
33
# Place me in ~/.local/share/nautilus-python/extensions/,
4-
# ensure you have python-nautilus package, restrart Nautilus, and enjoy :)
4+
# ensure you have python-nautilus package, restart Nautilus, and enjoy :)
55
#
66
# This script was written by cra0zy and is released to the public domain
77

@@ -45,7 +45,7 @@ def launch_vscode(self, menu, files):
4545
def get_file_items(self, window, files):
4646
item = Nautilus.MenuItem(
4747
name='VSCodeOpen',
48-
label='Open In ' + VSCODENAME,
48+
label='Open in ' + VSCODENAME,
4949
tip='Opens the selected files with VSCode'
5050
)
5151
item.connect('activate', self.launch_vscode, files)
@@ -56,7 +56,7 @@ def get_background_items(self, window, file_):
5656
item = Nautilus.MenuItem(
5757
name='VSCodeOpenBackground',
5858
label='Open in ' + VSCODENAME,
59-
tip='Opens VSCode in the current directory'
59+
tip='Opens the current directory in VSCode'
6060
)
6161
item.connect('activate', self.launch_vscode, [file_])
6262

0 commit comments

Comments
 (0)