aboutsummarylogtreecommitdiffstats
path: root/nvim-wrapper
diff options
context:
space:
mode:
authorFelipe Morales2016-03-17 06:59:24 +0100
committerFelipe Morales2016-03-17 06:59:24 +0100
commit009558a077cc11adf8aa30d56011f26cd16793dc (patch)
treec9854cd4c980b579508f9d693528be4da7559f8f /nvim-wrapper
parentb37027743579f193b6a246d3242930b2568b6e04 (diff)
downloadaur-009558a077cc11adf8aa30d56011f26cd16793dc.tar.gz
set title by default
Diffstat (limited to 'nvim-wrapper')
-rwxr-xr-xnvim-wrapper3
1 files changed, 3 insertions, 0 deletions
diff --git a/nvim-wrapper b/nvim-wrapper
index 36fe69c6c3fb..68e1e2bae2fe 100755
--- a/nvim-wrapper
+++ b/nvim-wrapper
@@ -62,6 +62,9 @@ def processArgv():
if not any([o.startswith('--working-directory') for o in gtermOptions]):
gtermOptions.append('--working-directory='+os.path.abspath(os.curdir))
+ # enable title by default
+ nvimOptions.append("+set title")
+
return {
'gterm': gtermOptions,
'nvim': nvimOptions