Comparing version 0.0.3 to 0.0.4
{ | ||
"name": "node-fzf", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "fzf ( junegunn/fzf ) inspired cli utility for node", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -90,2 +90,11 @@ const keypress = require( 'keypress' ) | ||
case 'd': // down | ||
selectionOffset += 10 | ||
return render() | ||
break | ||
case 'u': // up | ||
selectionOffset -= 10 | ||
return render() | ||
break | ||
case 'w': // clear fuzzy word | ||
@@ -92,0 +101,0 @@ buffer = '' |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11443
356