diff options
author | davidovski <david@davidovski.xyz> | 2021-12-05 22:02:25 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-12-05 22:02:25 +0000 |
commit | 74452dfb1735e7347459f3b024770ce285f7c96d (patch) | |
tree | 7c3a812c3d6e7c135b5924e2d353e6daac2353fd /config/vim/plugin/pickachu/apps.py | |
parent | bcdb3419af4a28135e2e668cd61b49db72e95796 (diff) |
removed shaders
Diffstat (limited to 'config/vim/plugin/pickachu/apps.py')
-rw-r--r-- | config/vim/plugin/pickachu/apps.py | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/config/vim/plugin/pickachu/apps.py b/config/vim/plugin/pickachu/apps.py deleted file mode 100644 index 00a6826..0000000 --- a/config/vim/plugin/pickachu/apps.py +++ /dev/null @@ -1,68 +0,0 @@ -import vim -import subprocess -from . import processors - -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# name: apps.py -# description: this function contains a dictionary object -# where you can easily add new apps with processor -# functions to handle their output. Note: a -# processor is optional. -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # - -ZENITY_COMMAND = vim.eval("g:pickachu_default_command") -# Note: This is not the final date format that displays on -# the users' buffer. This is the format we force -# Zenity/Qarma to provide us. -RETURNED_DATE_FORMAT = "%m/%d/%Y" -if ZENITY_COMMAND == 'qarma': - RETURNED_DATE_FORMAT = "MM/dd/yy" - -apps = { - 'date': { - 'cmd': ZENITY_COMMAND, - 'processor': processors.dateProcessor, - 'options': [ - '--calendar', - '--date-format=' + RETURNED_DATE_FORMAT - ] - }, - 'file': { - 'cmd': ZENITY_COMMAND, - 'options': [ - '--file-selection' - ] - }, - 'color': { - 'cmd': ZENITY_COMMAND, - 'options': [ - '--color-selection' - ], - 'processor': processors.colorProcessor - } -} - -def runApp(choosenApp, format=None): - app = apps.get(choosenApp, None) - if app: - output = None - try: - command_array = [app['cmd']] - if app.get('options', False): - for option in app['options']: - command_array.append(option) - # Logging - command_array.append('2> /tmp/pickachu_log') - output = subprocess.check_output(command_array).decode('utf-8') - except: - return None - - if app.get('processor', None): - if format: - return app['processor'](output.rstrip(), format) - else: - return app['processor'](output.rstrip()) - else: - return output.rstrip() - else: - print("App does not exist.") |