Skip to content

Commit

Permalink
added utf-8 coding declaration to all .py files
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkafk committed Jan 21, 2015
1 parent ba25a8a commit cfa9969
Show file tree
Hide file tree
Showing 19 changed files with 38 additions and 0 deletions.
2 changes: 2 additions & 0 deletions autobuild.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import sublime
import sublime_plugin

Expand Down
2 changes: 2 additions & 0 deletions autocomplete.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import json
import os
import os.path
Expand Down
2 changes: 2 additions & 0 deletions cabal.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import sublime
import sublime_plugin
import sys
Expand Down
2 changes: 2 additions & 0 deletions cabalbuild.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import os
import os.path
import sublime
Expand Down
2 changes: 2 additions & 0 deletions cache.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import json
import os
import sublime
Expand Down
2 changes: 2 additions & 0 deletions fix_syntax.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

# Sublime's built-in Haskell lexer (Packages/Haskell/Haskell.tmLanguage)
# is slightly broken.
#
Expand Down
2 changes: 2 additions & 0 deletions ghci.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import re
import os
import sublime
Expand Down
2 changes: 2 additions & 0 deletions ghcmod.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import os
import re
import sublime
Expand Down
2 changes: 2 additions & 0 deletions haskell_docs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import re
import os
import sublime
Expand Down
2 changes: 2 additions & 0 deletions haskell_type.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import sublime
import sublime_plugin
import re
Expand Down
2 changes: 2 additions & 0 deletions hdevtools.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import os
import re
import sublime
Expand Down
2 changes: 2 additions & 0 deletions hdocs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import sublime
import json
import time
Expand Down
2 changes: 2 additions & 0 deletions hsdev.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import os
import os.path
import sys
Expand Down
2 changes: 2 additions & 0 deletions parseoutput.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import os
import os.path
import re
Expand Down
2 changes: 2 additions & 0 deletions repl.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import sublime
import sublime_plugin
import re
Expand Down
2 changes: 2 additions & 0 deletions stylishhaskell.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import errno
import sublime
import sublime_plugin
Expand Down
2 changes: 2 additions & 0 deletions sublime_haskell_common.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import errno
import fnmatch
import os
Expand Down
2 changes: 2 additions & 0 deletions symbols.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import threading
import sublime
import os.path
Expand Down
2 changes: 2 additions & 0 deletions util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

import sublime

if int(sublime.version()) < 3000:
Expand Down

0 comments on commit cfa9969

Please sign in to comment.