add --hidefilenames in config

This commit is contained in:
Marcus Obst 2017-03-04 17:21:21 +01:00
parent 938bbb73d1
commit 1b8895cd38
2 changed files with 7 additions and 1 deletions

View File

@ -482,6 +482,7 @@ class SendHeartbeatsThread(threading.Thread):
self.debug = SETTINGS.get('debug')
self.api_key = SETTINGS.get('api_key', '')
self.ignore = SETTINGS.get('ignore', [])
self.hidefilenames = SETTINGS.get('hidefilenames')
self.heartbeat = heartbeat
self.has_extra_heartbeats = False
@ -540,6 +541,8 @@ class SendHeartbeatsThread(threading.Thread):
cmd.extend(['--exclude', pattern])
if self.debug:
cmd.append('--verbose')
if self.hidefilenames:
cmd.append('--hidefilenames')
if self.has_extra_heartbeats:
cmd.append('--extra-heartbeats')
stdin = PIPE

View File

@ -19,5 +19,8 @@
"status_bar_message": true,
// Status bar message format.
"status_bar_message_fmt": "WakaTime {status} %I:%M %p"
"status_bar_message_fmt": "WakaTime {status} %I:%M %p",
// Hide filenames
"hidefilenames": false
}