All Projects → t9md → atom-open-this

t9md / atom-open-this

Licence: MIT license
Open file under cursor like `gf`(Vim), `C-x C-f`(Emacs)

Programming Languages

coffeescript
4710 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to atom-open-this

atom-vim-mode-visual-block
Add visual-blockwise operation to vim-mode.
Stars: ✭ 15 (-25%)
Mutual labels:  atom, vim-mode
progrssive
A PWA for reading RSS feeds. It works offline!
Stars: ✭ 23 (+15%)
Mutual labels:  atom
tool-bar
Package providing customisable toolbar for Atom
Stars: ✭ 161 (+705%)
Mutual labels:  atom
sprinkles-syntax
A sprinkled dark syntax theme with vibrant pops of colors.
Stars: ✭ 20 (+0%)
Mutual labels:  atom
atom-language-postcss
Atom language support for PostCSS
Stars: ✭ 55 (+175%)
Mutual labels:  atom
JARR
JARR is a web news aggregator.
Stars: ✭ 99 (+395%)
Mutual labels:  atom
linter-glsl
Atom package that lints GLSL shaders on the fly.
Stars: ✭ 15 (-25%)
Mutual labels:  atom
language-chef
Development repository for the language-chef plugin for the Atom text editor
Stars: ✭ 16 (-20%)
Mutual labels:  atom
feeds
免费的公众号 RSS,支持扩展任意 APP
Stars: ✭ 912 (+4460%)
Mutual labels:  atom
tern-openui5
🛠 Autocomplete for the OpenUI5 framework for your favorite code editor, powered by Tern.
Stars: ✭ 26 (+30%)
Mutual labels:  atom
encourage-atom
An Atom extension that adds little encouragements while you work
Stars: ✭ 24 (+20%)
Mutual labels:  atom
dotatom
Config for the Atom text editor
Stars: ✭ 15 (-25%)
Mutual labels:  atom
VisualTeensy
VisualCode projects for PJRC Teensy boards
Stars: ✭ 101 (+405%)
Mutual labels:  atom
atom-ide-definitions
Definitions for Atom IDE
Stars: ✭ 26 (+30%)
Mutual labels:  atom
AtomicWatch
Intel Atom C2000 series discovery tool that parses log files and returns results if a positive match is found. #nsacyber
Stars: ✭ 25 (+25%)
Mutual labels:  atom
atom-php-cs-fixer
Run the 'PHP Coding Standards Fixer' within Atom
Stars: ✭ 30 (+50%)
Mutual labels:  atom
atom-ansible-vault
Atom package to create and modify ansible-vault file
Stars: ✭ 31 (+55%)
Mutual labels:  atom
Simple-Social-Network
Micro Social Network developed in PHP, MySQL, BOOTSTRAP 3 and VUE.JS 2
Stars: ✭ 18 (-10%)
Mutual labels:  atom
linter-elixirc
Atom Linter plugin for ElixirC
Stars: ✭ 14 (-30%)
Mutual labels:  atom
iro4cli
An open-source rewrite of Iro, a grammar generator, supporting automatic VSCode & Atom extension generation.
Stars: ✭ 21 (+5%)
Mutual labels:  atom

open-this Build Status

Open file under cursor.
Like gf on Vim, C-x C-f on Emacs.

gif

How to use.

  1. Place cursor on filename in text like on ./styles-element in following code.
  2. Invoke open-this:here via command palette or keymap.
  3. file ./styles-element opened in current pane.
StylesElement = require './styles-element'
StorageFolder = require './storage-folder'

Keymap

No default keymap, copy and paste to your keymap.cson from following example.

  • Normal user
'atom-workspace atom-text-editor:not([mini])':
  'cmd-k f f': 'open-this:here'
  'cmd-k f d': 'open-this:split-down'
  'cmd-k f r': 'open-this:split-right'
'atom-text-editor.vim-mode.normal-mode':
  'g f':      'open-this:here'
  'ctrl-w f': 'open-this:split-down'
  'ctrl-w F': 'open-this:split-right'
'atom-text-editor.vim-mode-plus.normal-mode':
  'g f':      'open-this:here'
  'ctrl-w f': 'open-this:split-down'
  'ctrl-w F': 'open-this:split-right'
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].