This commit is contained in:
Florian Mounier
2016-01-18 10:19:01 +01:00
parent 5c054ca290
commit c0e2d8959b
5 changed files with 6 additions and 4 deletions

1
.gitignore vendored
View File

@@ -7,3 +7,4 @@ node_modules/
*.map *.map
sass/scss sass/scss
*.egg-info/ *.egg-info/
build/

View File

@@ -36,7 +36,7 @@ module.exports = (grunt) ->
coffeelint: coffeelint:
butterfly: butterfly:
'coffees/*.coffee' 'coffees/**/*.coffee'
watch: watch:
options: options:

View File

@@ -3,7 +3,7 @@ _set_theme_href = (href) ->
img = document.createElement('img') img = document.createElement('img')
img.onerror = -> img.onerror = ->
setTimeout (-> butterfly?.resize()), 250 setTimeout (-> butterfly?.resize()), 250
img.src = href; img.src = href
_theme = localStorage?.getItem('theme') _theme = localStorage?.getItem('theme')
_set_theme_href(_theme) if _theme _set_theme_href(_theme) if _theme

View File

@@ -2455,8 +2455,7 @@ class Terminal
# motion: ^[[b;x;yT # motion: ^[[b;x;yT
when 25 # show cursor when 25 # show cursor
@cursorHidden = false @cursorHidden = false
# alt screen buffer cursor
#@saveCursor();
when 1049, 47, 1047 # alt screen buffer when 1049, 47, 1047 # alt screen buffer
unless @normal unless @normal
normal = normal =

2
setup.cfg Normal file
View File

@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1