All Projects → estrategiahq → vue-hotkey

estrategiahq / vue-hotkey

Licence: MIT license
Simple Vue Hotkey

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to vue-hotkey

V Hotkey
Vue 2.x directive for binding hotkeys to components.
Stars: ✭ 606 (+2930%)
Mutual labels:  hotkey
Win Vind
Simple Vim Key Binder for Windows. You can operate Windows with keybindings like Vim.
Stars: ✭ 151 (+655%)
Mutual labels:  hotkey
ScribeBot
A highly scriptable automation system full of cool features. Automate everything with a little bit of Lua.
Stars: ✭ 72 (+260%)
Mutual labels:  hotkey
Repeat
Cross-platform mouse/keyboard record/replay and automation hotkeys/macros creation, and more advanced automation features.
Stars: ✭ 763 (+3715%)
Mutual labels:  hotkey
Xcactionbar
"Alfred for Xcode" plugin
Stars: ✭ 1,217 (+5985%)
Mutual labels:  hotkey
Keyboard
Hook and simulate global keyboard events on Windows and Linux.
Stars: ✭ 2,687 (+13335%)
Mutual labels:  hotkey
Keyboardshortcuts
Add user-customizable global keyboard shortcuts to your macOS app in minutes
Stars: ✭ 500 (+2400%)
Mutual labels:  hotkey
AHK MicMute
Control your microphone using keyboard and mouse hotkeys.
Stars: ✭ 67 (+235%)
Mutual labels:  hotkey
Perfectwindows
PerfectWindows 软件家族 - Windows 从未如此完美!
Stars: ✭ 1,326 (+6530%)
Mutual labels:  hotkey
ni-translate
A translator for Linux, running at the background which wakes up with the translation of the last selected text on command.
Stars: ✭ 82 (+310%)
Mutual labels:  hotkey
Movetodesktop
Move windows using hotkeys or the system menu
Stars: ✭ 822 (+4010%)
Mutual labels:  hotkey
Alfred.qrcode
A QRcode generator with python-qrcode for Alfred Workflows.
Stars: ✭ 57 (+185%)
Mutual labels:  hotkey
Bforartists
Bforartists is a fork of the popular 3D software Blender, with the goal to improve the UI.
Stars: ✭ 240 (+1100%)
Mutual labels:  hotkey
Capslock Plus
An efficiency tool that provides various functions by enhancing the Caps Lock key into a modifier key.
Stars: ✭ 650 (+3150%)
Mutual labels:  hotkey
react-shortcut
Convenient React component that detects if the given key combination is pressed, and triggers a callback
Stars: ✭ 16 (-20%)
Mutual labels:  hotkey
Hotkeys
➷ A robust Javascript library for capturing keyboard input. It has no dependencies.
Stars: ✭ 5,165 (+25725%)
Mutual labels:  hotkey
Ghostskb
Smart input method switcher like a ghost
Stars: ✭ 186 (+830%)
Mutual labels:  hotkey
hotkey
⌨️ cross-platform hotkey package
Stars: ✭ 82 (+310%)
Mutual labels:  hotkey
AHK-generator
A single page website to provide a UI for the 3 most common uses for AHK and defining custom hotstrings and hotkeys to trigger them
Stars: ✭ 23 (+15%)
Mutual labels:  hotkey
keybind
ClojureScript key bindings (shortcut) library
Stars: ✭ 85 (+325%)
Mutual labels:  hotkey

Vue Hotkey

Simple Vue Hotkey

We're using hotkey under the hood for now.

Install

npm install @estrategiahq/vue-hotkey

Setup

import Vue from 'vue'
import VueHotkey from '@estrategiahq/vue-hotkey'

Vue.use(VueHotkey, {
  prevent: ['input', 'textarea'] // default configs
})

Using

// Register a binding
this.$VueHotkey.register('ctrl+a', (event) => {
  // handle event
})

// Unregister a binding
this.$VueHotkey.unregister('ctrl+a')
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].