Преглед изворни кода

remove sublime-stuff. using vim now

Kevin H пре 11 година
родитељ
комит
f2b95dbcf0

+ 0 - 9
sublime-snippets/LaTeX/SI.sublime-snippet

@@ -1,9 +0,0 @@
-<snippet>
-    <content><![CDATA[
-\SI{${1:1}}{${2:u}}
-]]></content>
-    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
-    <tabTrigger>SI</tabTrigger>
-    <!-- Optional: Set a scope to limit where the snippet will trigger -->
-    <!-- <scope>source.python</scope> -->
-</snippet>

+ 0 - 16
sublime-snippets/LaTeX/fig.sublime-snippet

@@ -1,16 +0,0 @@
-<snippet>
-    <content><![CDATA[
-\begin{figure}[h]
-    \centering
-    \includegraphics[width=${1:0.5}\linewidth]{img/${2:foo}.${3:jpeg}}
-    \caption{
-        ${4:Schönes Bildchen}
-    }
-    \label{fig:${2:foo}}
-\end{figure}
-]]></content>
-    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
-    <tabTrigger>fig</tabTrigger>
-    <!-- Optional: Set a scope to limit where the snippet will trigger -->
-    <!-- <scope>source.python</scope> -->
-</snippet>

+ 0 - 9
sublime-snippets/LaTeX/frac.sublime-snippet

@@ -1,9 +0,0 @@
-<snippet>
-    <content><![CDATA[
-\frac{${1}}{${2}}
-]]></content>
-    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
-    <tabTrigger>frac</tabTrigger>
-    <!-- Optional: Set a scope to limit where the snippet will trigger -->
-    <!-- <scope>source.python</scope> -->
-</snippet>

+ 0 - 9
sublime-snippets/LaTeX/lr.sublime-snippet

@@ -1,9 +0,0 @@
-<snippet>
-    <content><![CDATA[
-\left${1:(}$3\right${2:)}
-]]></content>
-    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
-    <tabTrigger>lr</tabTrigger>
-    <!-- Optional: Set a scope to limit where the snippet will trigger -->
-    <!-- <scope>source.python</scope> -->
-</snippet>

+ 0 - 22
sublime-snippets/LaTeX/tab.sublime-snippet

@@ -1,22 +0,0 @@
-<snippet>
-    <content><![CDATA[
-\begin{table}
-    \centering
-    \caption{
-        ${1}
-    }
-    \label{tab:${2}}
-    \begin{tabular}{${3:ccc}}
-        \toprule
-        ${4:HEAD} \\\\
-        \midrule
-        ${5:BODY} \\\\
-        \bottomrule
-    \end{tabular}
-\end{table}
-]]></content>
-    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
-    <tabTrigger>tab</tabTrigger>
-    <!-- Optional: Set a scope to limit where the snippet will trigger -->
-    <!-- <scope>source.python</scope> -->
-</snippet>

+ 0 - 38
sublime-text-settings/Preferences.sublime-settings

@@ -1,38 +0,0 @@
-{
-    "color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night-Bright.tmTheme",
-    "ensure_newline_at_eof_on_save": true,
-    "file_exclude_patterns":
-    [
-        ".DS_Store",
-        "*.pid",
-        "*.pyc"
-    ],
-    "find_selected_text": true,
-    "folder_exclude_patterns":
-    [
-        ".git",
-        "__pycache__",
-        "env",
-        "env3"
-    ],
-    "font_face": "Meslo LG S for Powerline",
-    "font_size": 13,
-    "highlight_modified_tabs": true,
-    "ignored_packages":
-    [
-        "Pylinter",
-        "Jedi - Python autocompletion"
-    ],
-    "rulers":
-    [
-        72,
-        79
-    ],
-    "scroll_past_end": false,
-    "tab_size": 4,
-    "translate_tabs_to_spaces": true,
-    "trim_trailing_white_space_on_save": true,
-    "wide_caret": true,
-    "word_wrap": true,
-    "wrap_width": 80
-}