Skip to content

Commit

Permalink
Hterm fixes (#20)
Browse files Browse the repository at this point in the history
* hterm api updates

* hterm fixes.

 - use new api to select, hightlight and scroll to lines.
 - refactor code.

* More improvements:

- search next working.
- fixing search prev.

* new search callback:

 - basic search cb that supports next and prev actions.
- new action and reducer tweak.

* add backward compatibility

* fix nasty/buggy event-handler
  • Loading branch information
jaanauati authored Nov 24, 2017
1 parent c60c887 commit 2853f5f
Show file tree
Hide file tree
Showing 7 changed files with 1,428 additions and 20 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"no-plusplus": 0,
"no-restricted-syntax": 0,
"react/prop-types": 0,
"comma-dangle": 0
"comma-dangle": 0,
"no-underscore-dangle": 0
}
}
58 changes: 58 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
Loading

0 comments on commit 2853f5f

Please sign in to comment.