From 3c0cf360a203b8513cf14a0be956b5c42096d4ae Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Sat, 15 Feb 2014 23:44:36 +0100 Subject: [PATCH] Removed exe bit from all python files. --- pythonx/UltiSnips/__init__.py | 0 pythonx/UltiSnips/_vim.py | 0 pythonx/UltiSnips/escaping.py | 0 pythonx/UltiSnips/providers/__init__.py | 0 pythonx/UltiSnips/providers/_base.py | 0 pythonx/UltiSnips/providers/added_snippets_provider.py | 0 pythonx/UltiSnips/providers/snippet_file.py | 0 pythonx/UltiSnips/snippet_definition.py | 0 pythonx/UltiSnips/snippet_manager.py | 0 pythonx/UltiSnips/text_objects/_base.py | 0 pythonx/UltiSnips/text_objects/_escaped_char.py | 0 pythonx/UltiSnips/text_objects/_mirror.py | 0 pythonx/UltiSnips/text_objects/_parser.py | 0 pythonx/UltiSnips/text_objects/_python_code.py | 0 pythonx/UltiSnips/text_objects/_shell_code.py | 0 pythonx/UltiSnips/text_objects/_snippet_instance.py | 0 pythonx/UltiSnips/text_objects/_tabstop.py | 0 pythonx/UltiSnips/text_objects/_transformation.py | 0 pythonx/UltiSnips/text_objects/_viml_code.py | 0 pythonx/UltiSnips/text_objects/_visual.py | 0 pythonx/UltiSnips/vim_state.py | 0 21 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 pythonx/UltiSnips/__init__.py mode change 100755 => 100644 pythonx/UltiSnips/_vim.py mode change 100755 => 100644 pythonx/UltiSnips/escaping.py mode change 100755 => 100644 pythonx/UltiSnips/providers/__init__.py mode change 100755 => 100644 pythonx/UltiSnips/providers/_base.py mode change 100755 => 100644 pythonx/UltiSnips/providers/added_snippets_provider.py mode change 100755 => 100644 pythonx/UltiSnips/providers/snippet_file.py mode change 100755 => 100644 pythonx/UltiSnips/snippet_definition.py mode change 100755 => 100644 pythonx/UltiSnips/snippet_manager.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_base.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_escaped_char.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_mirror.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_parser.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_python_code.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_shell_code.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_snippet_instance.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_tabstop.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_transformation.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_viml_code.py mode change 100755 => 100644 pythonx/UltiSnips/text_objects/_visual.py mode change 100755 => 100644 pythonx/UltiSnips/vim_state.py diff --git a/pythonx/UltiSnips/__init__.py b/pythonx/UltiSnips/__init__.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/_vim.py b/pythonx/UltiSnips/_vim.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/escaping.py b/pythonx/UltiSnips/escaping.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/providers/__init__.py b/pythonx/UltiSnips/providers/__init__.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/providers/_base.py b/pythonx/UltiSnips/providers/_base.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/providers/added_snippets_provider.py b/pythonx/UltiSnips/providers/added_snippets_provider.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/providers/snippet_file.py b/pythonx/UltiSnips/providers/snippet_file.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/snippet_definition.py b/pythonx/UltiSnips/snippet_definition.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/snippet_manager.py b/pythonx/UltiSnips/snippet_manager.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_base.py b/pythonx/UltiSnips/text_objects/_base.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_escaped_char.py b/pythonx/UltiSnips/text_objects/_escaped_char.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_mirror.py b/pythonx/UltiSnips/text_objects/_mirror.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_parser.py b/pythonx/UltiSnips/text_objects/_parser.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_python_code.py b/pythonx/UltiSnips/text_objects/_python_code.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_shell_code.py b/pythonx/UltiSnips/text_objects/_shell_code.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_snippet_instance.py b/pythonx/UltiSnips/text_objects/_snippet_instance.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_tabstop.py b/pythonx/UltiSnips/text_objects/_tabstop.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_transformation.py b/pythonx/UltiSnips/text_objects/_transformation.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_viml_code.py b/pythonx/UltiSnips/text_objects/_viml_code.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/text_objects/_visual.py b/pythonx/UltiSnips/text_objects/_visual.py old mode 100755 new mode 100644 diff --git a/pythonx/UltiSnips/vim_state.py b/pythonx/UltiSnips/vim_state.py old mode 100755 new mode 100644