Skip to content

Commit

Permalink
Merge #94
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Jan 18, 2016
1 parent 5c054ca commit c0e2d89
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -7,3 +7,4 @@ node_modules/
*.map
sass/scss
*.egg-info/
build/
2 changes: 1 addition & 1 deletion Gruntfile.coffee
Expand Up @@ -36,7 +36,7 @@ module.exports = (grunt) ->

coffeelint:
butterfly:
'coffees/*.coffee'
'coffees/**/*.coffee'

watch:
options:
Expand Down
2 changes: 1 addition & 1 deletion coffees/ext/theme.coffee
Expand Up @@ -3,7 +3,7 @@ _set_theme_href = (href) ->
img = document.createElement('img')
img.onerror = ->
setTimeout (-> butterfly?.resize()), 250
img.src = href;
img.src = href

_theme = localStorage?.getItem('theme')
_set_theme_href(_theme) if _theme
Expand Down
3 changes: 1 addition & 2 deletions coffees/term.coffee
Expand Up @@ -2455,8 +2455,7 @@ class Terminal
# motion: ^[[b;x;yT
when 25 # show cursor
@cursorHidden = false
# alt screen buffer cursor
#@saveCursor();

when 1049, 47, 1047 # alt screen buffer
unless @normal
normal =
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1

0 comments on commit c0e2d89

Please sign in to comment.