Coder Social home page Coder Social logo

hyperclick's Introduction

Hyperclick

NOTE: This package is now a bundled version of the code in atom-ide-ui. Please refer to the atom-ide-ui repository to view or modify the source.

Pluggable text-clicking UI for Atom.

Hyperclick is triggered by two events:

  • <cmd> or <cmd-mousemove> underlines clickable text under the mouse.
  • <cmd-mousedown> performs the action associated with the clickable text.
  • <cmd-alt-enter> performs the action on the text under the cursor.

Known Providers

Check out the wiki: https://github.com/facebook-atom/hyperclick/wiki/Known-Providers

Demo

Install hyperclick with this demo package to recreate the screencast below.

hyperclick-demo

Provider API

Example

Declare the provider callback in the package.json (e.g. getProvider).

"providedServices": {
  "hyperclick": {
    "versions": {
      "0.1.0": "getProvider"
    }
  }
}

NOTE: Providers for [email protected] are still accepted, but that naming is now deprecated. Please use [email protected] for new providers.

Define the provider callback in lib/main.js.

export function getProvider() {
  return {
    priority: 1
    grammarScopes: ['source.js'], // JavaScript files
    getSuggestionForWord(
      textEditor: TextEditor,
      text: string,
      range: Range
    ): ?HyperclickSuggestion {
      return {
        // The range(s) to underline as a visual cue for clicking.
        range,
        // The function to call when the underlined text is clicked.
        callback() {},
      };
    },
  };
}

Details

You must define one of these methods on the provider:

  • getSuggestionForWord(textEditor: TextEditor, text: string, range: Range)

    Use this to provide a suggestion for single-word matches. Optionally set wordRegExp on the provider to adjust word-matching.

    • textEditor: The text editor the event originated from.
    • text: The string containing the word under the mouse.
    • range: The buffer position of text in the text editor.
  • getSuggestion(textEditor: TextEditor, position: Point)

    Use this to provide a suggestion if it can have non-contiguous ranges. A primary use-case for this is Objective-C methods.

    • textEditor: The text editor the event originated from.
    • position: The buffer position of the mouse in the text editor.

The methods return a suggestion or a Promise that resolves to a suggestion:

  • range: A range or array of ranges to underline as a visual cue for clicking.

    To distinguish ranges and arrays, this can't be a Range-compatible array. For example, use new Range([0, 0], [0, 10]) instead of [[0, 0], [0, 10]].

  • callback: The function to call when the underlined text is clicked.

    If there are multiple possibilities, this can be an array of objects with:

    • title: A string to present in the UI for the user to select.
    • rightLabel(optional): An indicator denoting the "kind" of suggestion this represents
    • callback: The function to call when the user selects this object.

Additional provider fields:

  • priority: The higher this is, the more precedence the provider gets.

    Hyperclick only returns suggestions from a single provider, so this is a workaround for providers to override others. priority defaults to 0.

  • grammarScopes: An (optional) Array of grammar scopeNames to provide suggestions for. Your provider will only be triggered in matching text editors.

hyperclick's People

Contributors

bolinfest avatar hansonw avatar jamesgpearce avatar zertosh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

hyperclick's Issues

In MacOS control + click key mapping lose focus on opened tabs

If I want to jump in an already opened file I lose the focus of editing with the trigger control + click. Only the space, enter, backspace and shortcuts are working, but not the letters.
I have to click again on the file after the jump to get the focus back.

Note: shit + click combination and cmd + click is ok.

Can't confirm cursor when target selected from left to right

Software: Ubuntu 16.04, Atom 1.17.2, Hyperclick 0.1.1
Reproduce: select target with keyboard or mouse and try go to definition by keyboard shortcut, mouse or command-line. it works only if target was selectr from right to left.

The problem is especially relevant for those who do not want to use the mouse.
P.S - I came across this problem when using Hyperclick with Hyperclick JavaScript provider.

Lost ctrl+click after update to 0.1.1

On version 0.0.40 i can use 'Ctrl+Click' to underline the word under the mouse and click to go to definition.

On never version i have lost 'Settings' screen to set keybinding. And if i use 'Alt+Click', it does not work correctly. By pressing Alt, the underlined word is most of time two or three words to the right of mouse, not the word under the mouse. Adding the disadvantage of switching between 'Show and Hide' the top menu.

I have installed again the 0.0.40 version

Cannot read property 'getDomNode' of undefined

[Enter steps to reproduce:]
Error big title: "Failed to activate the hyperclick package"

  1. Just open Atom and I get the error
    I tried disable the enable and uninstall then reinstall hyperclick, but it didn't work :(

Atom: 1.19.2 ia32
Electron: 1.6.9
OS: Microsoft Windows 10 Home
Thrown From: hyperclick package 0.0.40

Stack Trace

Failed to activate the hyperclick package

At Cannot read property 'getDomNode' of undefined

TypeError: Cannot read property 'getDomNode' of undefined
    at getLinesDomNode (/packages/hyperclick/lib/HyperclickForTextEditor.js:99:40)
    at addMouseListeners (/packages/hyperclick/lib/HyperclickForTextEditor.js:109:9)
    at HyperclickForTextEditor._setupMouseListeners (/packages/hyperclick/lib/HyperclickForTextEditor.js:115:7)
    at /packages/hyperclick/lib/HyperclickForTextEditor.js:60:10)
    at Hyperclick.observeTextEditor (/packages/hyperclick/lib/Hyperclick.js:85:37)
    at /packages/hyperclick/lib/Hyperclick.js:74:20
    at Workspace.observeTextEditors (~/AppData/Local/atom/app-1.19.2/resources/app/src/workspace.js:717:15)
    at /packages/hyperclick/lib/Hyperclick.js:62:51)
    at Object.activate (/packages/hyperclick/lib/main.js:55:16)
    at Package.module.exports.Package.activateNow (~/AppData/Local/atom/app-1.19.2/resources/app/src/package.js:253:25)
    at ~/AppData/Local/atom/app-1.19.2/resources/app/src/package.js:225:38
    at Package.module.exports.Package.measure (~/AppData/Local/atom/app-1.19.2/resources/app/src/package.js:99:21)
    at ~/AppData/Local/atom/app-1.19.2/resources/app/src/package.js:218:32
    at Package.module.exports.Package.activate (~/AppData/Local/atom/app-1.19.2/resources/app/src/package.js:215:40)
    at PackageManager.module.exports.PackageManager.activatePackage (~/AppData/Local/atom/app-1.19.2/resources/app/src/package-manager.js:645:40)
    at ~/AppData/Local/atom/app-1.19.2/resources/app/node_modules/settings-view/lib/package-manager.js:535:35
    at exit (~/AppData/Local/atom/app-1.19.2/resources/app/node_modules/settings-view/lib/package-manager.js:128:22)
    at triggerExitCallback (~/AppData/Local/atom/app-1.19.2/resources/app/src/buffered-process.js:338:17)
    at ChildProcess.<anonymous> (~/AppData/Local/atom/app-1.19.2/resources/app/src/buffered-process.js:368:17)
    at emitTwo (events.js:106:13)
    at ChildProcess.emit (events.js:191:7)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)

Commands

Non-Core Packages

atom-autocomplete-php 0.22.0 
atom-typescript 11.0.6 
autoclose-html 0.23.0 
busy-signal 1.4.3 
git-plus 7.3.3 
hyperclick 0.0.40 
intentions 1.1.2 
linter 2.2.0 
linter-ui-default 1.6.3 
nuclide 0.229.0 
php-integrator-annotations 1.1.1 
php-integrator-autocomplete-plus 1.2.0 
php-integrator-base 2.1.7 
php-integrator-call-tips 1.2.1 
php-integrator-core 2.0.2 
php-integrator-linter 1.3.0 
php-integrator-navigation 1.1.1 
php-integrator-symbol-viewer 0.6.4 
php-integrator-tooltips 1.1.3 
pigments 0.39.1 
platformio-ide-terminal 2.3.1 
project-manager 3.3.3 
Remote-FTP 0.10.7 
terminal-plus 0.14.5 
todo-show 1.11.0 

Uncaught TypeError: Cannot read property 'length' of undefined

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.19.0-beta3 x64
Electron: 1.6.9
OS: Mac OS X 10.12.5
Thrown From: hyperclick package 0.1.2

Stack Trace

Uncaught TypeError: Cannot read property 'length' of undefined

At /Applications/Atom Beta.app/Contents/Resources/app/src/text-editor-component.js:2263

TypeError: Cannot read property 'length' of undefined
    at TextEditorComponent.screenPositionForPixelPosition (/Applications/Atom Beta.app/Contents/Resources/app/src/text-editor-component.js:2263:33)
    at TextEditorComponent.screenPositionForMouseEvent (/Applications/Atom Beta.app/Contents/Resources/app/src/text-editor-component.js:1855:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:161291)
    at t.default._isMouseAtLastWordRange (/packages/hyperclick/index.js:1:161913)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:159183)

Commands

     -0:38.3.0 fuzzy-finder:toggle-file-finder (input.hidden-input)
     -0:35.7.0 core:confirm (input.hidden-input)

Non-Core Packages

atom-beautify 0.30.3 
auto-update-packages 1.0.1 
busy-signal 1.4.3 
file-icons 2.1.8 
git-blame 1.1.1 
git-history 3.3.0 
git-time-machine 1.5.9 
go-debug 1.5.0 
go-outline 0.6.6 
go-plus 5.5.5 
go-signature-statusbar 1.2.1 
highlight-selected 0.13.1 
hyperclick 0.1.2 
intentions 1.1.2 
language-protobuf 0.7.1 
last-cursor-position 0.9.2 
linter 2.2.0 
linter-ui-default 1.6.2 
maximize-panes 0.2.0 
minimap 4.28.3 
minimap-cursorline 0.2.0 
minimap-git-diff 4.3.1 
minimap-highlight-selected 4.6.1 
minimap-linter 2.0.1 
minimap-selection 4.4.0 
minimap-split-diff 0.3.7 
persistent-undo 1.2.0 
project-manager 3.3.5 
split-diff 1.4.3 
sync-settings 0.8.2 

Windows - provider called even if mouse does not move

Issue and Steps to Reproduce

On windows hyperclick providers are called continuously even though I do not move the mouse cursor at all.
This does not happen on macOS.
Here is a gif that demonstrates that pressing the trigger keys and not moving the mouse still calls the flow-ide hyperclick provider

Demo:
win

Main issue: steelbrain/flow-ide#103

The hyperclick provider of flow-ide: https://github.com/steelbrain/flow-ide/blob/v1.7.0/lib/index.js#L253-L314

Expected Behavior

Only called once because my mouse has not moved.

Actual Behavior

The hyperclick provider is flooded with calls.

Versions

  • Atom: 1.18.0
  • OS: Windows 10

Additional Details

  • Installed packages (apm ls --installed):
Community Packages (6) C:\Users\xyz\.atom\packages
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]

Uncaught Error: Problem reading log4js config { appenders: [ { type: 'stdout' } ], replaceConsole...

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.18.0 x64
Electron: 1.3.15
OS: Mac OS X 10.12.4
Thrown From: hyperclick package 0.1.2

Stack Trace

Uncaught Error: Problem reading log4js config { appenders: [ { type: 'stdout' } ], replaceConsole: false }. Error was "Cannot find module "."" (Error: Cannot find module "."
at /Users/Yanik/.atom/packages/hyperclick/index.js:1:167342
at E (/Users/Yanik/.atom/packages/hyperclick/index.js:1:167412)
at T (/Users/Yanik/.atom/packages/hyperclick/index.js:1:167448)
at /Users/Yanik/.atom/packages/hyperclick/index.js:1:165747
at Array.forEach (native)
at u (/Users/Yanik/.atom/packages/hyperclick/index.js:1:165727)
at f (/Users/Yanik/.atom/packages/hyperclick/index.js:1:166205)
at x (/Users/Yanik/.atom/packages/hyperclick/index.js:1:166995)
at Object. (/Users/Yanik/.atom/packages/hyperclick/index.js:1:169206)
at t (/Users/Yanik/.atom/packages/hyperclick/index.js:1:194)
at a (/Users/Yanik/.atom/packages/hyperclick/index.js:1:156157)
at _getMousePositionAsBufferPosition (/Users/Yanik/.atom/packages/hyperclick/index.js:1:161350)
at _onMouseMove (/Users/Yanik/.atom/packages/hyperclick/index.js:1:159196))

At /Users/Yanik/.atom/packages/hyperclick/index.js:1

Error: Problem reading log4js config { appenders: [ { type: 'stdout' } ], replaceConsole: false }. Error was "Cannot find module "."" (Error: Cannot find module "."
    at /packages/hyperclick/index.js:1:167342
    at /packages/hyperclick/index.js:1:167412)
    at /packages/hyperclick/index.js:1:167448)
    at /packages/hyperclick/index.js:1:165747
    at Array.forEach (native)
    at /packages/hyperclick/index.js:1:165727)
    at /packages/hyperclick/index.js:1:166205)
    at /packages/hyperclick/index.js:1:166995)
    at /packages/hyperclick/index.js:1:169206)
    at /packages/hyperclick/index.js:1:194)
    at /packages/hyperclick/index.js:1:156157)
    at _getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:161350)
    at _onMouseMove (/packages/hyperclick/index.js:1:159196))
    at /packages/hyperclick/index.js:1:166259)
    at /packages/hyperclick/index.js:1:166995)
    at /packages/hyperclick/index.js:1:169206)
    at /packages/hyperclick/index.js:1:194)
    at /packages/hyperclick/index.js:1:156157)
    at _getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:161350)
    at _onMouseMove (/packages/hyperclick/index.js:1:159196)

Commands

  2x -3:18.8.0 emmet:expand-abbreviation-with-tab (input.hidden-input)
     -3:12.3.0 core:save (input.hidden-input)
  5x -1:45.1.0 core:backspace (input.hidden-input)
     -1:34.9.0 core:save (input.hidden-input)
     -0:45.2.0 tree-view:reveal-active-file (div.title)
     -0:40.5.0 tree-view:remove (span.name.icon.icon-file-text)
     -0:22 tree-view:reveal-active-file (div.title)

Non-Core Packages

atom-beautify 0.30.3 
atom-css-clean 2.20.5 
atom-css-comb 3.2.0 
atom-html-preview 0.1.22 
atom-wrap-in-tag 0.6.0 
auto-indent 0.5.0 
autocomplete-html-entities 0.1.0 
build 0.68.0 
busy 0.7.0 
busy-signal 1.4.3 
color-picker 2.2.5 
compare-files 0.8.0 
css-declaration-sorter 1.0.1 
double-tag 0.9.0 
drag-relative-path 1.1.2 
emmet 2.4.3 
expand-region 0.3.0 
fonts 3.0.2 
git-blame 1.1.1 
git-plus 7.9.3 
goto-definition 1.3.4 
html-include-resource 1.3.0 
hyperclick 0.1.2 
indent-guide-improved 1.4.12 
intentions 1.1.2 
jquery-snippets 11.0.0 
linter 2.2.0 
linter-stylelint 3.10.0 
linter-ui-default 1.6.2 
minimap 4.28.2 
minimap-pigments 0.2.2 
monokai 0.24.0 
open-in-browser 0.5.2 
php-integrator-autocomplete-plus 1.5.0 
php-integrator-base 2.1.12 
php-integrator-call-tips 1.2.1 
php-integrator-linter 1.3.0 
php-integrator-navigation 1.1.2 
php-integrator-refactoring 1.3.1 
php-integrator-tooltips 1.1.5 
pigments 0.39.1 
project-manager 3.3.5 
remote-sync 4.1.5 
sass-autocompile 0.13.3 
sort-lines 0.14.0 
split-diff 1.4.3 
sync-settings 0.8.2 
tag 0.5.0 
terminal-plus 0.14.5 
terminal-status 1.6.8 
trailing-spaces 0.4.0 
tree-view-copy-relative-path 1.2.0 
web-view 3.0.0 

no definition found

when i click on a class name, i got "no definition found" message.
image

on this example, i clicked on the class name "parallax".
When i hit ctrl+shift+R i can see all the symbols of my project (thats include all CSS class's) but this function isnt practical cus it load all the symbols

Deprecated selector in `hyperclick/styles/hyperclick.less`

In hyperclick/styles/hyperclick.less:

Starting from Atom v1.13.0, the contents of atom-text-editor elements are no longer encapsulated within a shadow DOM boundary. This means you should stop using :host and ::shadow pseudo-selectors, and prepend all your syntax selectors with syntax--. To prevent breakage with existing style sheets, Atom will automatically upgrade the following selectors:

  • atom-text-editor::shadow .editor-contents--private .highlight.hyperclick > .region => atom-text-editor.editor .editor-contents--private .highlight.hyperclick > .region

  • atom-text-editor:not([mini]).hyperclick::shadow .editor-contents--private => atom-text-editor:not([mini]).hyperclick.editor .editor-contents--private

  • atom-text-editor:not([mini]).hyperclick-loading::shadow .editor-contents--private => atom-text-editor:not([mini]).hyperclick-loading.editor .editor-contents--private

Automatic translation of selectors will be removed in a few release cycles to minimize startup time. Please, make sure to upgrade the above selectors as soon as possible.

Uncaught TypeError: Cannot destructure property `textNodes` of 'undefined' or 'null'.

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.29.0 x64
Electron: 2.0.5
OS: Mac OS X 10.13.6
Thrown From: hyperclick package 0.1.5

Stack Trace

Uncaught TypeError: Cannot destructure property textNodes of 'undefined' or 'null'.

At /Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:2398

TypeError: Cannot destructure property `textNodes` of 'undefined' or 'null'.
    at TextEditorComponent.screenPositionForPixelPosition (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:2398:65)
    at TextEditorComponent.screenPositionForMouseEvent (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:1963:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:160492)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:158466)

Commands

     -8:27.3.0 core:backspace (input.hidden-input)
  2x -8:25.5.0 core:save (input.hidden-input)
  2x -0:58.6.0 core:move-down (input.hidden-input)
     -0:20.2.0 settings-view:open (input.hidden-input)

Non-Core Packages

ariake-dark-syntax 0.1.3 
atom-beautify 0.33.0 
atom-dark-monokai-syntax 0.18.0 
atom-material-syntax 1.0.8 
atom-material-syntax-dark 1.0.0 
atom-material-ui 2.1.3 
atom-react-native-autocomplete 0.0.27 
atom-ternjs 0.18.3 
autoclose-html 0.23.0 
autocomplete-html-entities 0.2.0 
busy 0.7.0 
busy-signal 1.4.3 
copy-path 0.5.1 
dark-plus-syntax 2.5.0 
docblockr 0.13.7 
editorconfig 2.2.2 
emmet 2.4.3 
emmet-jsx-css-modules 1.0.0 
emmet-jsx-props 1.4.0 
es6-javascript 1.0.0 
file-icons 2.1.24 
file-types 1.0.1 
fold-search-results 1.0.5 
format-sql 0.3.0 
ghar-dark-syntax 2.0.0 
git-plus 8.0.0 
git-plus-plus 1.1.0 
git-plus-toolbar 1.0.1 
gl-dark-syntax 3.0.0 
go-plus 5.8.5 
grunt-snippets 0.1.1 
highlight-selected 0.14.0 
hyperclick 0.1.5 
ide-php 0.7.14 
ide-typescript 0.7.6 
imdone-atom-github 0.1.11 
intentions 1.1.5 
javascript-snippets 1.2.1 
jekyll 2.1.0 
language-apache 1.8.0 
language-aspx 0.5.0 
language-docker 1.1.8 
language-ethereum 0.3.9 
language-javascript-jsx 0.3.7 
language-liquid 0.7.0 
leanpub-snippets 0.2.0 
linter 2.2.0 
linter-eslint 8.4.1 
linter-golinter 1.2.2 
linter-stylelint 4.3.2 
linter-swagger 0.5.1 
linter-ui-default 1.7.1 
local-history 4.3.1 
mac-os-ui 0.3.0 
markdown-helpers 0.3.0 
markdown-scroll-sync 2.1.2 
markdown-writer 2.9.0 
MavensMate-Atom 1.1.0 
merge-conflicts 1.4.5 
multirow-tabs 0.3.3 
native-ui 0.26.3 
npm-plus 0.4.0 
nuclide 0.337.0 
nuclide-format-js 0.0.47 
one-dark-vivid-syntax 1.8.1 
organize-imports 1.0.0 
pear-dark-syntax 1.0.9 
pigments 0.40.2 
pinned-tabs 2.0.6 
prettier-atom 0.54.0 
project-manager 3.3.6 
prompt-big-file 0.5.0 
react 0.18.0 
react-snippets 1.1.1 
snow-dark-syntax 0.1.1 
sort-lines 0.18.0 
spectrum-dark-syntax 0.2.0 
split-diff 1.5.2 
spring-dark-syntax 0.0.4 
sync-settings 0.8.6 
titan-dark-syntax 2.0.0 
todo-show 2.3.0 
tool-bar 1.1.7 
tool-bar-almighty 0.8.2 
tool-bar-markdown-writer 0.4.0 
unity-dark-ui 2.0.9 
unity-ui 2.1.11 
Warm-Dark-syntax 0.1.0 
zhk-dark-syntax 0.3.1 

Uncaught RangeError: Invalid array length

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.19.2 x64
Electron: 1.6.9
OS: Microsoft Windows 10 Enterprise
Thrown From: hyperclick package 0.1.3

Stack Trace

Uncaught RangeError: Invalid array length

At C:\Users\huang.yiming\AppData\Local\atom\app-1.19.2\resources\app\src\text-editor-component.js:2839

RangeError: Invalid array length
    at TextEditorComponent.populateVisibleTiles (~/AppData/Local/atom/app-1.19.2/resources/app/src/text-editor-component.js:2839:45)
    at TextEditorComponent.updateSyncBeforeMeasuringContent (~/AppData/Local/atom/app-1.19.2/resources/app/src/text-editor-component.js:372:16)
    at TextEditorComponent.screenPositionForPixelPosition (~/AppData/Local/atom/app-1.19.2/resources/app/src/text-editor-component.js:2328:18)
    at TextEditorComponent.screenPositionForMouseEvent (~/AppData/Local/atom/app-1.19.2/resources/app/src/text-editor-component.js:1937:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:160281)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:158262)

Commands

     -2:32.7.0 intentions:highlight (input.hidden-input)
     -2:32.4.0 core:copy (input.hidden-input)
  9x -1:47.9.0 core:backspace (input.hidden-input)
     -1:37.8.0 intentions:highlight (input.hidden-input)
     -1:37.5.0 core:copy (input.hidden-input)

Non-Core Packages

atom-beautify 0.30.5 
atom-material-syntax 1.0.6 
atom-material-ui 2.0.4 
atom-runner 2.7.1 
autoclose-html 0.23.0 
autocomplete-java 1.2.7 
autocomplete-oracle 1.4.1 
autocomplete-xml 0.9.4 
busy-signal 1.4.3 
file-icons 2.1.11 
highlight-selected 0.13.1 
hyperclick 0.1.3 
intellij-idea-keymap 0.2.3 
intentions 1.1.5 
javascript-snippets 1.2.1 
language-log 1.8.0 
language-oracle 1.8.0 
language-pgsql 0.2.3 
linter 2.2.0 
linter-javac 1.9.4 
linter-ui-default 1.6.7 
minimap 4.29.6 
minimap-highlight-selected 4.6.1 
platformio-ide-terminal 2.5.5 
wakatime 7.0.3 
xml-formatter 0.11.0 

hyperclick not work

I have hyperclick and js-hyperclick both installed in my atom1.19.5 mac10.12 for nodejs.
hyperclick package is actived but not work.
I have the package-list below.pls help find any conflict if exists. Thanks.
Poor English expression, sorry.

Built-in Atom Packages (79)
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]

Community Packages (15) /~~~/.atom/packages
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]

desactivate when selecting

I often select multiple words at the same time with Ctrl+double click.
Could we desactivate the hyperclick (Ctrl+click) in this situation (when at least 1 word is selected)?
Edit: well otherwise the solution is to change the trigger key

Highlight tooltips

I am maintaining a package atom-youcompleteme that supports go-to actions with hyperclick.

It would be very useful that when or is held and some text under the mouse is underlined, a tooltip can be shown to indicate the inferred type of a value, the parent of a class, or anything else.

Thanks!

JSX support

Hello,

I'm trying to use hyperclick in files that have some JSX in them, like react components and etc. but it's not workings. I do not have issues in JS files that do not have any JSX content in them - there it works fine.

Deprecated selector in `hyperclick/styles/hyperclick.less`

In hyperclick/styles/hyperclick.less:

Starting from Atom v1.13.0, the contents of atom-text-editor elements are no longer encapsulated within a shadow DOM boundary. This means you should stop using :host and ::shadow pseudo-selectors, and prepend all your syntax selectors with syntax--. To prevent breakage with existing style sheets, Atom will automatically upgrade the following selectors:

  • atom-text-editor::shadow .editor-contents--private .highlight.hyperclick > .region => atom-text-editor.editor .editor-contents--private .highlight.hyperclick > .region

  • atom-text-editor:not([mini]).hyperclick::shadow .editor-contents--private => atom-text-editor:not([mini]).hyperclick.editor .editor-contents--private

  • atom-text-editor:not([mini]).hyperclick-loading::shadow .editor-contents--private => atom-text-editor:not([mini]).hyperclick-loading.editor .editor-contents--private

Automatic translation of selectors will be removed in a few release cycles to minimize startup time. Please, make sure to upgrade the above selectors as soon as possible.

Uncaught Error: Cannot decorate a destroyed marker

Steps to possibly reproduce:

  1. I am using hyperclyck with a non-nuclide atom.
  2. I cmd+clicked a class (react-component) that was being imported by another file.
  3. It opened the same file in another pane showing where the module was being imported.
  4. I then cmd+clicked the location of the import to open that file.
  5. Once I opened that file I was receiving this error every time I hovered over the original file where I originally cmd+clicked the class name.

Atom: 1.19.0-beta5 x64
Electron: 1.6.9
OS: Mac OS X 10.12.6
Thrown From: hyperclick package 0.1.3

Stack Trace

Uncaught Error: Cannot decorate a destroyed marker

At /Applications/AtomLite/Atom Beta.app/Contents/Resources/app/src/decoration-manager.js:191

Error: Cannot decorate a destroyed marker
    at DecorationManager.decorateMarker (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/src/decoration-manager.js:183:27)
    at TextEditor.module.exports.TextEditor.decorateMarker (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/src/text-editor.js:1810:43)
    at new Selection (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/src/selection.js:35:43)
    at TextEditor.module.exports.TextEditor.addSelection (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/src/text-editor.js:2646:25)
    at /Applications/AtomLite/Atom Beta.app/Contents/Resources/app/node_modules/text-buffer/lib/display-marker-layer.js:79:24
    at Function.module.exports.Emitter.simpleDispatch (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/node_modules/event-kit/lib/emitter.js:25:20)
    at Emitter.module.exports.Emitter.emit (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/node_modules/event-kit/lib/emitter.js:141:34)
    at MarkerLayer.module.exports.MarkerLayer.createMarker (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/node_modules/text-buffer/lib/marker-layer.js:417:28)
    at MarkerLayer.module.exports.MarkerLayer.markRange (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/node_modules/text-buffer/lib/marker-layer.js:217:25)
    at DisplayMarkerLayer.module.exports.DisplayMarkerLayer.markBufferRange (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/node_modules/text-buffer/lib/display-marker-layer.js:105:58)
    at TextEditor.module.exports.TextEditor.addSelectionForBufferRange (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/src/text-editor.js:2320:40)
    at TextEditor.module.exports.TextEditor.createLastSelectionIfNeeded (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/src/text-editor.js:2712:27)
    at TextEditor.module.exports.TextEditor.getLastCursor (/Applications/AtomLite/Atom Beta.app/Contents/Resources/app/src/text-editor.js:2126:18)
    at t.wordAtPosition (/packages/hyperclick/index.js:1:141003)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:158239)

Commands

     -6:42.9.0 core:backspace (input.hidden-input)
     -6:36.1.0 core:save (input.hidden-input)
     -6:26.4.0 editor:select-to-beginning-of-word (input.hidden-input)
     -6:24.8.0 core:save (input.hidden-input)
     -0:19.1.0 find-and-replace:use-selection-as-find-pattern (input.hidden-input)
     -0:18.5.0 find-and-replace:find-previous (input.hidden-input)

Non-Core Packages

atom-sublime-monokai-syntax 0.4.4 
auto-detect-indentation 1.3.0 
autocomplete-modules 1.6.10 
busy-signal 1.4.3 
Dependents 1.6.6 
flow-ide 1.6.0 
git-blame 1.1.1 
git-plus 7.9.3 
greppage 0.1.0 
hey-pane 1.0.0 
highlight-selected 0.13.1 
hyperclick 0.1.3 
intentions 1.1.5 
js-hyperclick 1.11.0 
linter 2.2.0 
linter-eslint 8.2.1 
linter-ui-default 1.6.3 
minimap 4.29.3 
minimap-bookmarks 0.4.2 
minimap-find-and-replace 4.5.2 
minimap-git-diff 4.3.1 
minimap-highlight-selected 4.6.1 
nuclide 0.242.66273750 
quick-file-actions 0.2.1 
terminal-plus 0.14.5 
tree-view-git-modified 0.7.3 

Feature request: click to open CSS preprocessor @imports

I love Hyperclick when I’m working in JavaScript, but I also do a lot of the CSS work on our team, and I really wish I could use it there as well.

Sass, Less, and PostCSS support the use of @import to import partial stylesheets with the following syntax:

@import "forms/controls";

Where "forms/controls" is the relative path to the stylesheet partial. I would love to be able to Cmd-click on the @import statement to open up that partial.

Uncaught TypeError: Cannot read property 'firstChild' of undefined

I just created file with:

<?php

namespace Foo\CoreBundle\Bar\Baz;


class Foo

content.

Atom: 1.19.0-beta1 x64
Electron: 1.6.9
OS: Ubuntu 16.04.2
Thrown From: hyperclick package 0.1.2

Stack Trace

Uncaught TypeError: Cannot read property 'firstChild' of undefined

At /usr/share/atom-beta/resources/app/src/text-editor-component.js:2097

TypeError: Cannot read property 'firstChild' of undefined
    at TextEditorComponent.measureLongestLineWidth (/usr/share/atom-beta/resources/app/src/text-editor-component.js:2097:112)
    at TextEditorComponent.measureContentDuringUpdateSync (/usr/share/atom-beta/resources/app/src/text-editor-component.js:372:16)
    at TextEditorComponent.screenPositionForPixelPosition (/usr/share/atom-beta/resources/app/src/text-editor-component.js:2239:18)
    at TextEditorComponent.screenPositionForMouseEvent (/usr/share/atom-beta/resources/app/src/text-editor-component.js:1842:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:161291)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:159272)

Commands

     -0:15 intentions:highlight (input.hidden-input)
     -0:14.6.0 pane:show-next-recently-used-item (input.hidden-input)
     -0:14.4.0 pane:move-active-item-to-top-of-stack (input.hidden-input)
  2x -0:10.3.0 core:move-up (input.hidden-input)
     -0:09.8.0 editor:move-to-first-character-of-line (input.hidden-input)
     -0:09.5.0 editor:select-to-end-of-line (input.hidden-input)
     -0:09.3.0 intentions:highlight (input.hidden-input)
     -0:09.2.0 core:copy (input.hidden-input)
     -0:08.8.0 pane:show-next-recently-used-item (input.hidden-input)
     -0:08.6.0 pane:move-active-item-to-top-of-stack (input.hidden-input)
  2x -0:07.6.0 core:move-down (input.hidden-input)
  2x -0:06.4.0 core:move-up (input.hidden-input)
     -0:05.5.0 docblockr:parse-enter (input.hidden-input)
     -0:05.5.0 editor:newline (input.hidden-input)
     -0:04.4.0 docblockr:parse-enter (input.hidden-input)
     -0:04.4.0 editor:newline (input.hidden-input)

Non-Core Packages

atom-autocomplete-php 0.25.6 
atom-beautify 0.30.4 
busy-signal 1.4.3 
change-case 0.6.5 
docblockr 0.11.0 
hyperclick 0.1.2 
intentions 1.1.2 
last-cursor-position 0.9.2 
linter 2.2.0 
linter-jshint 3.1.5 
linter-php 1.3.2 
linter-ui-default 1.6.2 
php-integrator-annotations 1.2.0 
php-integrator-autocomplete-plus 1.6.0 
php-integrator-base 3.0.1 
php-integrator-navigation 1.2.1 
php-integrator-refactoring 1.4.0 
php-twig 4.0.0 
project-manager 3.3.5 

Can't uninstall.

I'm unable to uninstall this package. When I restart Atom, the package is still there, causing problems...

I've tried removing from ~/.atom/packages but it's still there...

Deprecated selector in `hyperclick\styles\hyperclick.less`

In hyperclick\styles\hyperclick.less:

Starting from Atom v1.13.0, the contents of atom-text-editor elements are no longer encapsulated within a shadow DOM boundary. This means you should stop using :host and ::shadow pseudo-selectors, and prepend all your syntax selectors with syntax--. To prevent breakage with existing style sheets, Atom will automatically upgrade the following selectors:

  • atom-text-editor::shadow .editor-contents--private .highlight.hyperclick > .region => atom-text-editor.editor .editor-contents--private .highlight.hyperclick > .region

  • atom-text-editor:not([mini]).hyperclick::shadow .editor-contents--private => atom-text-editor:not([mini]).hyperclick.editor .editor-contents--private

  • atom-text-editor:not([mini]).hyperclick-loading::shadow .editor-contents--private => atom-text-editor:not([mini]).hyperclick-loading.editor .editor-contents--private

Automatic translation of selectors will be removed in a few release cycles to minimize startup time. Please, make sure to upgrade the above selectors as soon as possible.

Multiple selections using cmd + click not working anymore.

Problem
Since the latest update, the default cmd + click functionality to make multiple selections doesn't seem to work anymore. Found out by brute forcing some combinations that it's now cmd + alt + click, but would like this to be cmd + click as per Atom's default again.

Reproduce
Install Hyperclick package, and the key combanation doesn't work anymore.

Workaround
When I start Atom in safe mode using atom --safe or when I disable the Hyperclick package, it works again.

Uncaught TypeError: Cannot read property 'length' of undefined

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.19.0-beta4 x64
Electron: 1.6.9
OS: Mac OS X 10.11.6
Thrown From: hyperclick package 0.1.2

Stack Trace

Uncaught TypeError: Cannot read property 'length' of undefined

At /Applications/Atom Beta.app/Contents/Resources/app/src/text-editor-component.js:2266

TypeError: Cannot read property 'length' of undefined
    at TextEditorComponent.screenPositionForPixelPosition (/Applications/Atom Beta.app/Contents/Resources/app/src/text-editor-component.js:2266:33)
    at TextEditorComponent.screenPositionForMouseEvent (/Applications/Atom Beta.app/Contents/Resources/app/src/text-editor-component.js:1858:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:161291)
    at t.default._isMouseAtLastWordRange (/packages/hyperclick/index.js:1:161913)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:159183)

Commands

     -1:03.0 tree-view:show (atom-workspace.workspace.scrollbars-visible-when-scrolling.seti-icons.seti-animate)
     -0:50.1.0 vim-mode-plus:delete (input.hidden-input)
     -0:48.8.0 vim-mode-plus:inner-subword (input.hidden-input)
  8x -0:48.3.0 vim-mode-plus:delete (input.hidden-input)
     -0:42.9.0 vim-mode-plus:set-count-1 (input.hidden-input)
     -0:41.6.0 vim-mode-plus:repeat (input.hidden-input)
     -0:38.1.0 vim-mode-plus:activate-insert-mode (input.hidden-input)
  3x -0:37.5.0 core:backspace (input.hidden-input)
  2x -0:22.3.0 core:save (input.hidden-input)
     -0:20.3.0 docblockr:parse-enter (input.hidden-input)
     -0:20.3.0 editor:newline (input.hidden-input)
     -0:13.2.0 docblockr:parse-enter (input.hidden-input)
     -0:13.2.0 editor:newline (input.hidden-input)

Non-Core Packages

activate-power-mode 2.1.0 
atom-material-syntax 1.0.6 
atom-material-syntax-dark 1.0.0 
atom-material-ui 2.0.4 
atom-ternjs 0.18.3 
atom-wx 0.1.1 
autocomplete-emojis 2.5.0 
busy-signal 1.4.3 
color-picker 2.2.5 
css-snippets 1.1.0 
docblockr 0.11.0 
editorconfig 2.2.2 
emmet 2.4.3 
ex-mode 0.15.0 
file-icons 2.1.9 
haskell-grammar 0.4.0 
highlight-selected 0.13.1 
hyperclick 0.1.2 
intentions 1.1.2 
js-hyperclick 1.11.0 
language-babel 2.67.1 
language-graphql 0.9.0 
language-ini 1.19.0 
language-lua 0.9.11 
language-ocaml 1.9.5 
language-rust 0.4.11 
language-swift 0.5.0 
language-thrift 1.0.2 
language-vue 0.23.0 
linter 2.2.0 
linter-eslint 8.2.1 
linter-js-standard 3.9.1 
linter-scss-lint 3.1.0 
linter-ui-default 1.6.3 
MagicPython 1.0.10 
merge-conflicts 1.4.5 
minimap 4.29.0 
minimap-pigments 0.2.2 
monokai 0.24.0 
nuclide 0.241.0 
nuclide-format-js 0.0.36 
pigments 0.39.1 
react-native-components 0.1.1 
react-native-snippets 0.3.0 
react-snippets 0.8.0 
set-syntax 0.3.2 
seti-syntax 1.1.3 
seti-ui 1.9.0 
sort-lines 0.14.0 
standardjs-snippets 2.6.0 
Stylus 3.1.1 
sync-settings 0.8.2 
tag 0.5.0 
toggle-quotes 1.0.1 
tool-bar 1.1.0 
vim-mode-plus 0.94.0 
wxapp 0.1.0 

HyperclickSuggestion clarification

The example Provider API code in the API references the type HyperclickSuggestion.

Where should this type be imported from? I can see it is in atom-ide-ui, but not sure if it makes sense to have the whole of atom-ide-ui to be listed as a dependency for a package.

Uncaught TypeError: Cannot read property 'getDomNode' of undefined

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.19.0-dev-60c1b85ed x64
Electron: 1.6.9
OS: Mac OS X 10.12.5
Thrown From: hyperclick package 0.0.40

Stack Trace

Uncaught TypeError: Cannot read property 'getDomNode' of undefined

At /Users/Allen/.atom/packages/hyperclick/lib/HyperclickForTextEditor.js:99

TypeError: Cannot read property 'getDomNode' of undefined
    at getLinesDomNode (/packages/hyperclick/lib/HyperclickForTextEditor.js:99:40)
    at removeMouseListeners (/packages/hyperclick/lib/HyperclickForTextEditor.js:105:9)
    at Function.module.exports.Emitter.simpleDispatch (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/node_modules/event-kit/lib/emitter.js:25:14)
    at Emitter.module.exports.Emitter.emit (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/node_modules/event-kit/lib/emitter.js:141:28)
    at HTMLElement.detachedCallback (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/text-editor-element.js:46:18)
    at HTMLElement.PaneElement.itemRemoved (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/pane-element.js:187:29)
    at Function.module.exports.Emitter.simpleDispatch (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/node_modules/event-kit/lib/emitter.js:25:14)
    at Emitter.module.exports.Emitter.emit (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/node_modules/event-kit/lib/emitter.js:141:28)
    at Pane.module.exports.Pane.removeItem (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/pane.js:611:20)
    at Pane.module.exports.Pane.destroyItem (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/pane.js:683:16)
    at Pane.module.exports.Pane.destroyActiveItem (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/pane.js:660:12)
    at Workspace.closeActivePaneItemOrEmptyPaneOrWindow (/Users/Allen/Projects/javascript/atom/out/app/src/workspace.js:1430:40)
    at HTMLElement.core:close (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/register-default-commands.js:231:32)
    at CommandRegistry.module.exports.CommandRegistry.handleCommandEvent (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/command-registry.js:265:29)
    at /Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/command-registry.js:3:59
    at KeymapManager.module.exports.KeymapManager.dispatchCommandEvent (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/node_modules/atom-keymap/lib/keymap-manager.js:606:16)
    at KeymapManager.module.exports.KeymapManager.handleKeyboardEvent (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/node_modules/atom-keymap/lib/keymap-manager.js:397:22)
    at WindowEventHandler.module.exports.WindowEventHandler.handleDocumentKeyEvent (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/window-event-handler.js:100:36)
    at HTMLDocument.<anonymous> (/Users/Allen/Projects/javascript/atom/out/Atom.app/Contents/Resources/app/src/window-event-handler.js:3:59)

Commands

     -8:39.8.0 editor:newline (input.hidden-input)
  2x -8:37.1.0 core:backspace (input.hidden-input)
     -7:48.8.0 core:move-right (input.hidden-input)
  2x -7:48.3.0 core:select-right (input.hidden-input)
     -7:47.1.0 core:save (input.hidden-input)
     -6:58.9.0 core:backspace (input.hidden-input)
  2x -6:58.4.0 core:save (input.hidden-input)
     -6:40.9.0 core:move-left (input.hidden-input)
     -6:40.6.0 core:move-right (input.hidden-input)
     -6:40.3.0 core:backspace (input.hidden-input)
  4x -6:39.8.0 core:save (input.hidden-input)
 11x -1:39.3.0 core:close (input.hidden-input)
     -1:30 core:paste (input.hidden-input)
     -1:29.5.0 core:save (input.hidden-input)
     -1:27.5.0 core:cut (input.hidden-input)
     -1:27 core:save (input.hidden-input)

Non-Core Packages

atom-autocomplete-php 0.22.2 
atom-beautify 0.29.26 
atom-icons 0.2.2 
busy-signal 1.4.1 
custom-app-icon 0.2.3 
docblockr 0.10.3 
git-blame 1.1.1 
highlight-line 0.12.0 
hyperclick 0.0.40 
intentions 1.1.2 
isotope-ui 2.8.5 
last-cursor-position 0.9.2 
linter 2.1.4 
linter-php 1.3.2 
linter-ui-default 1.6.0 
nord-atom-syntax 0.9.1 
nord-atom-ui 0.11.0 
php-cs-fixer 4.1.0 
php-twig 4.0.0 
platformio-ide-terminal 2.5.1 
project-manager 3.3.5 

Uncaught TypeError: Cannot read property 'id' of undefined

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.22.1 x64
Electron: 1.6.15
OS: Mac OS X 10.13
Thrown From: hyperclick package 0.1.5

Stack Trace

Uncaught TypeError: Cannot read property 'id' of undefined

At /Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:646

TypeError: Cannot read property 'id' of undefined
    at extraRenderedScreenLines.forEach (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:646:45)
    at Map.forEach (native)
    at TextEditorComponent.renderLineTiles (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:643:43)
    at TextEditorComponent.renderContent (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:586:18)
    at TextEditorComponent.renderScrollContainer (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:561:18)
    at TextEditorComponent.render (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:506:20)
    at Object.updateSync (/Applications/Atom.app/Contents/Resources/app/node_modules/etch/lib/component-helpers.js:107:40)
    at TextEditorComponent.updateSyncBeforeMeasuringContent (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:383:16)
    at TextEditorComponent.screenPositionForPixelPosition (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:2381:18)
    at TextEditorComponent.screenPositionForMouseEvent (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:1953:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:160492)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:158466)

Commands

     -0:24.4.0 editor:consolidate-selections (input.hidden-input)
     -0:24.4.0 core:cancel (input.hidden-input)
     -0:24.2.0 editor:consolidate-selections (input.hidden-input)
     -0:24.2.0 core:cancel (input.hidden-input)
     -0:23.9.0 editor:consolidate-selections (input.hidden-input)
     -0:23.9.0 core:cancel (input.hidden-input)
     -0:23.7.0 editor:consolidate-selections (input.hidden-input)
     -0:23.7.0 core:cancel (input.hidden-input)
     -0:23.4.0 editor:consolidate-selections (input.hidden-input)
     -0:23.4.0 core:cancel (input.hidden-input)
     -0:23.2.0 editor:consolidate-selections (input.hidden-input)
     -0:23.2.0 core:cancel (input.hidden-input)
     -0:23 editor:consolidate-selections (input.hidden-input)
     -0:23 core:cancel (input.hidden-input)
     -0:22.9.0 editor:consolidate-selections (input.hidden-input)
     -0:22.9.0 core:cancel (input.hidden-input)

Non-Core Packages

aligner 1.2.4 
aligner-javascript 1.3.0 
ask-stack 2.2.0 
atom-beautify 0.30.9 
atom-jshint 2.0.0 
atom-ternjs 0.18.3 
atom-wrap-in-tag 0.6.0 
auto-detect-indentation 1.3.0 
auto-update-packages 1.0.1 
autoclose-html 0.23.0 
autocomplete-modules 1.8.0 
autocomplete-paths 2.12.1 
busy-signal 1.4.3 
case-keep-replace 0.6.1 
change-case 0.6.5 
color-picker 2.2.5 
copy-path 0.4.2 
editorconfig 2.2.2 
emmet 2.4.3 
emmet-jsx-css-modules 1.0.0 
expose 0.15.0 
file-icons 2.1.14 
git-blame 1.3.1 
git-plus 7.10.0 
git-time-machine 1.5.9 
highlight-selected 0.13.1 
hyperclick 0.1.5 
intentions 1.1.5 
js-hyperclick 1.12.2 
jshint 1.8.6 
language-babel 2.80.2 
linter 2.2.0 
linter-erb 1.1.0 
linter-eslint 8.4.0 
linter-jshint 3.1.6 
linter-rubocop 2.2.0 
linter-ruby 1.2.6 
linter-ui-default 1.6.10 
lodash-snippets 2.0.0 
multi-cursor 2.1.5 
open-recent 5.0.0 
pigments 0.40.2 
prettier-atom 0.41.0 
pretty-json 1.6.4 
project-manager 3.3.5 
rails-snippets 2.16.0 
related 0.3.5 
ruby-block 0.3.6 
sort-lines 0.18.0 
Sublime-Style-Column-Selection 1.7.4 
tablr 1.8.3 
tabs-to-spaces 1.0.3 
toggle-quotes 1.0.1 
trailing-spaces 0.4.0 
tree-view-copy-relative-path 1.2.0 

Uncaught TypeError: Cannot match against 'undefined' or 'null'.

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.20.1 x64
Electron: 1.6.9
OS: Mac OS X 10.12.6
Thrown From: hyperclick package 0.1.5

Stack Trace

Uncaught TypeError: Cannot match against 'undefined' or 'null'.

At /Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:2391

TypeError: Cannot match against 'undefined' or 'null'.
    at TextEditorComponent.screenPositionForPixelPosition (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:2391:65)
    at TextEditorComponent.screenPositionForMouseEvent (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:1972:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:160492)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:158466)

Commands

     -0:19.2.0 tree-view:show (atom-workspace.workspace.scrollbars-visible-when-scrolling)

Non-Core Packages

atom-beautify 0.30.5 
atom-handlebars 1.3.0 
atom-monokai 0.10.9 
auto-detect-indentation 1.3.0 
autoclose-html 0.23.0 
busy-signal 1.4.3 
editorconfig 2.2.2 
elm-format 3.0.0 
emmet 2.4.3 
file-icons 2.1.12 
flow-ide 1.8.1 
fonts 3.0.3 
highlight-selected 0.13.1 
hyperclick 0.1.5 
intentions 1.1.5 
jQuery 1.2.5 
jshint 1.8.6 
language-ejs 0.4.0 
language-elm 1.5.0 
language-javascript-jsx 0.3.7 
linter 2.2.0 
linter-eslint 8.3.2 
linter-flow 5.6.1 
linter-stylelint 4.0.2 
linter-ui-default 1.6.10 
merge-conflicts 1.4.5 
minimap 4.29.7 
open-in-browser 0.5.2 
pigments 0.40.2 
prettier-atom 0.40.0 

Settings break on atom restart requiring plugin reinstall

Whenever atom restarts with hyperclick installed the plugin breaks cmd+click multi cursor functionality. The settings for hyperclick look like they break(showing as inputs instead of selects). The only fix I've found is to reinstall hyperclick every time you open atom which is becoming very annoying.

Settings after restarting atom

multicursor and hyperclick are not working at this point.
image

After reinstalling hyperclick(fix)

image

Uncaught TypeError: Cannot read property 'length' of undefined

[Enter steps to reproduce:]

  1. Create new file
  2. Paste some JSON

Atom: 1.19.5 x64
Electron: 1.6.9
OS: Mac OS X 10.13
Thrown From: hyperclick package 0.1.3

Stack Trace

Uncaught TypeError: Cannot read property 'length' of undefined

At /Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:2367

TypeError: Cannot read property 'length' of undefined
    at TextEditorComponent.screenPositionForPixelPosition (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:2367:33)
    at TextEditorComponent.screenPositionForMouseEvent (/Applications/Atom.app/Contents/Resources/app/src/text-editor-component.js:1954:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:160281)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:158262)

Commands

     -0:18.9.0 application:new-file (div.panels-item)
     -0:17.7.0 core:paste (input.hidden-input)
     -0:09.6.0 core:select-all (input.hidden-input)
     -0:05.0 core:close (input.hidden-input)

Non-Core Packages

advanced-open-file 0.16.6 
aligner 1.2.4 
aligner-css 1.2.1 
aligner-javascript 1.3.0 
aligner-php 1.1.1 
aligner-stylus 1.1.0 
atom-beautify 0.30.5 
atom-clock 0.1.15 
atom-cursor-indent 0.1.1 
atom-vim-keymap 1.0.1 
atom-wrap-in-tag 0.6.0 
autocomplete-nunjucks 0.5.0 
autocomplete-php 0.3.7 
blame 0.12.0 
busy-signal 1.4.3 
change-case 0.6.5 
copy-filename 1.1.0 
docblockr 0.11.0 
double-tag 0.9.0 
editorconfig 2.2.2 
emmet 2.4.3 
es-identifier-highlight 0.4.3 
escape-utils 0.5.3 
file-type-icons 1.3.4 
filesize 3.0.0 
fold-comments 0.6.0 
git-blame 1.2.2 
git-history 3.3.0 
highlight-column 0.5.4 
highlight-selected 0.13.1 
hyperclick 0.1.3 
indent-toggle-on-paste 0.1.3 
intentions 1.1.5 
keybinding-cheatsheet 0.1.1 
language-babel 2.73.0 
language-gitignore 0.3.0 
language-nunjucks 4.1.0 
language-svg 0.9.2 
language-vue 0.23.1 
less-than-slash 0.17.0 
line-ending-converter 1.3.2 
linter 2.2.0 
linter-htmlhint 1.3.3 
linter-jsonlint 1.3.0 
linter-php 1.4.0 
linter-stylint 2.2.8 
linter-ui-default 1.6.8 
linter-xo 0.23.1 
markdown-table-editor 0.6.3 
minimap 4.29.6 
minimap-bookmarks 0.4.2 
minimap-cursorline 0.2.0 
minimap-find-and-replace 4.5.2 
minimap-highlight-selected 4.6.1 
minimap-linter 2.0.2 
minimap-selection 4.5.0 
npm-outdated 0.6.0 
pathr 1.0.1 
php-integrator-annotations 1.2.0 
php-integrator-autocomplete-plus 1.6.0 
php-integrator-base 3.0.1 
php-integrator-navigation 1.2.1 
php-integrator-refactoring 1.4.1 
php-integrator-symbol-viewer 0.6.4 
pigments 0.40.2 
platformio-ide-terminal 2.6.0 
project-manager 3.3.5 
qolor 0.4.2 
regex-railroad-diagram 0.19.3 
remember-file-positions 0.2.3 
remember-folds 0.3.0 
Remote-FTP 1.1.4 
resize-indent 0.3.0 
snippets-editor 1.0.0 
Stylus 3.1.1 
Sublime-Style-Column-Selection 1.7.4 
svg-preview 0.11.0 
sync-settings 0.8.3 
tab-numbers 0.6.0 
tabs-to-spaces 1.0.3 
todo-show 2.0.0 
toggle-quotes 1.0.1 
vim-mode-plus 1.3.3 
w3c-validation 0.4.0 
zentabs 0.8.8 

Uncaught TypeError: Cannot match against 'undefined' or 'null'.

[Enter steps to reproduce:]

  1. ...
  2. ...

Atom: 1.25.0 x64
Electron: 1.7.11
OS: Unknown Windows version
Thrown From: hyperclick package 0.1.5

Stack Trace

Uncaught TypeError: Cannot match against 'undefined' or 'null'.

At C:\Users\malarconp\AppData\Local\atom\app-1.25.0\resources\app\src\text-editor-component.js:2399

TypeError: Cannot match against 'undefined' or 'null'.
    at TextEditorComponent.screenPositionForPixelPosition (~/AppData/Local/atom/app-1.25.0/resources/app/src/text-editor-component.js:2399:65)
    at TextEditorComponent.screenPositionForMouseEvent (~/AppData/Local/atom/app-1.25.0/resources/app/src/text-editor-component.js:1964:23)
    at t.default._getMousePositionAsBufferPosition (/packages/hyperclick/index.js:1:160492)
    at t.default._onMouseMove (/packages/hyperclick/index.js:1:158466)

Commands

     -0:54.9.0 intentions:highlight (input.hidden-input)
     -0:54.9.0 core:undo (input.hidden-input)
     -0:54.7.0 intentions:highlight (input.hidden-input)
     -0:54.7.0 core:undo (input.hidden-input)
     -0:53.5.0 editor:consolidate-selections (input.hidden-input)
     -0:53.5.0 core:cancel (input.hidden-input)
     -0:52.6.0 intentions:highlight (input.hidden-input)
     -0:52.4.0 core:undo (input.hidden-input)
     -0:46.7.0 intentions:highlight (input.hidden-input)
  3x -0:46.6.0 core:redo (input.hidden-input)
  5x -0:45.4.0 core:undo (input.hidden-input)
 43x -0:44 core:redo (input.hidden-input)
     -0:41.7.0 intentions:highlight (input.hidden-input)
  2x -0:41.6.0 core:undo (input.hidden-input)
     -0:06.9.0 intentions:highlight (input.hidden-input)
     -0:06.9.0 core:save (input.hidden-input)

Non-Core Packages

artisan 0.3.2 
autoclose-html 0.23.0 
blade-snippets 0.2.0 
blade-spacer 0.4.2 
busy-signal 1.4.3 
emmet 2.4.3 
file-icons 2.1.16 
hyperclick 0.1.5 
hyperclick-php 0.2.1 
intentions 1.1.5 
js-hyperclick 1.13.0 
language-blade 0.38.0 
language-vue 0.23.1 
language-vue-component 0.5.0 
laravel 0.7.1 
laravel-snippets 2.1.0 
lint-sass-vue 1.0.5 
linter 2.2.0 
linter-ui-default 1.6.10 
php-hyperclick 1.2.1 
vue-autocompile 0.0.6 
vue-hyperclick 0.2.0 
vue2-autocomplete 0.1.0-alpha.4 

Object.dirname is deprecated.

Argument to path.dirname must be a string

Object.dirname (C:\Users\Administrator\AppData\Local\atom\app-1.17.2\resources\app\src\electron-shims.js:9:10)
Object.getSuggestionForWord (C:\Users\Administrator\.atom\packages\path-hyperclick\lib\main.js:27:37)
<unknown> (C:\Users\Administrator\.atom\packages\hyperclick\index.js:1:154773)
undefined.next (null:null:null)
r (C:\Users\Administrator\.atom\packages\hyperclick\index.js:1:139523)
<unknown> (C:\Users\Administrator\.atom\packages\hyperclick\index.js:1:139657)

Failed to activate the hyperclick package

After recent update hyperclick throws this error while starting atom.

Atom Version: 1.13.1
Electron Version: 1.3.13
System: Ubuntu 16.04.2
Thrown From: hyperclick package, v0.1.1

Stack Trace

Failed to activate the hyperclick package

At Package not initialized

Error: Package not initialized
    at Object.e.(anonymous function) [as observeTextEditor] (/home/nidhin/.atom/packages/hyperclick/index.js:1:153410)
    at Package.module.exports.Package.activateServices (/usr/share/atom/resources/app.asar/src/package.js:366:69)
    at Package.module.exports.Package.activateNow (/usr/share/atom/resources/app.asar/src/package.js:194:16)
    at /usr/share/atom/resources/app.asar/src/package.js:164:32
    at Package.module.exports.Package.measure (/usr/share/atom/resources/app.asar/src/package.js:94:15)
    at /usr/share/atom/resources/app.asar/src/package.js:157:26
    at Package.module.exports.Package.activate (/usr/share/atom/resources/app.asar/src/package.js:154:34)
    at PackageManager.module.exports.PackageManager.activatePackage (/usr/share/atom/resources/app.asar/src/package-manager.js:550:34)
    at /usr/share/atom/resources/app.asar/src/package-manager.js:531:29
    at Config.module.exports.Config.transactAsync (/usr/share/atom/resources/app.asar/src/config.js:337:18)
    at PackageManager.module.exports.PackageManager.activatePackages (/usr/share/atom/resources/app.asar/src/package-manager.js:526:19)
    at PackageManager.module.exports.PackageManager.activate (/usr/share/atom/resources/app.asar/src/package-manager.js:508:46)
    at /usr/share/atom/resources/app.asar/src/atom-environment.js:831:28

Commands

     -0:03.4.0 tree-view:show (atom-workspace.workspace.scrollbars-visible-always.theme-one-dark-syntax.theme-one-dark-ui)

Config

{
  "core": {
    "telemetryConsent": "limited"
  }
}

Installed Packages

# User
autocomplete-modules, v1.6.10 (inactive)
custom-folds, v1.9.4 (inactive)
file-icons, v2.1.7 (inactive)
git-plus, v7.8.1 (inactive)
highlight-selected, v0.13.1 (inactive)
hyperclick, v0.1.1 (inactive)
js-hyperclick, v1.11.0 (inactive)
prettier-atom, v0.34.0 (inactive)
react, v0.16.2 (inactive)
atom-dark-syntax, v0.28.0 (inactive)
atom-dark-ui, v0.53.0 (inactive)
atom-light-syntax, v0.29.0 (inactive)
atom-light-ui, v0.46.0 (inactive)
base16-tomorrow-dark-theme, v1.4.0 (inactive)
base16-tomorrow-light-theme, v1.4.0 (inactive)
one-dark-ui, v1.8.2 (inactive)
one-light-ui, v1.8.2 (inactive)
one-dark-syntax, v1.6.0 (inactive)
one-light-syntax, v1.6.0 (inactive)
solarized-dark-syntax, v1.1.1 (inactive)
solarized-light-syntax, v1.1.1 (inactive)
about, v1.7.2 (inactive)
archive-view, v0.62.0 (inactive)
autocomplete-atom-api, v0.10.0 (inactive)
autocomplete-css, v0.14.1 (inactive)
autocomplete-html, v0.7.2 (inactive)
autocomplete-plus, v2.33.1 (inactive)
autocomplete-snippets, v1.11.0 (inactive)
autoflow, v0.29.0 (inactive)
autosave, v0.23.2 (inactive)
background-tips, v0.26.1 (inactive)
bookmarks, v0.43.2 (inactive)
bracket-matcher, v0.85.1 (inactive)
command-palette, v0.39.1 (inactive)
deprecation-cop, v0.55.1 (inactive)
dev-live-reload, v0.47.0 (inactive)
encoding-selector, v0.22.0 (inactive)
exception-reporting, v0.40.0 (inactive)
find-and-replace, v0.204.5 (inactive)
fuzzy-finder, v1.4.0 (inactive)
git-diff, v1.2.0 (inactive)
go-to-line, v0.31.2 (inactive)
grammar-selector, v0.48.2 (inactive)
image-view, v0.60.0 (inactive)
incompatible-packages, v0.26.1 (inactive)
keybinding-resolver, v0.35.0 (inactive)
line-ending-selector, v0.5.1 (inactive)
link, v0.31.2 (inactive)
markdown-preview, v0.159.3 (inactive)
metrics, v1.1.3 (inactive)
notifications, v0.65.1 (inactive)
open-on-github, v1.2.1 (inactive)
package-generator, v1.0.2 (inactive)
settings-view, v0.244.0 (inactive)
snippets, v1.0.4 (inactive)
spell-check, v0.68.5 (inactive)
status-bar, v1.6.0 (inactive)
styleguide, v0.48.0 (inactive)
symbols-view, v0.113.1 (inactive)
tabs, v0.103.1 (inactive)
timecop, v0.33.2 (inactive)
tree-view, v0.211.1 (inactive)
update-package-dependencies, v0.10.0 (inactive)
welcome, v0.35.1 (inactive)
whitespace, v0.35.0 (inactive)
wrap-guide, v0.39.0 (inactive)
language-c, v0.54.0 (inactive)
language-clojure, v0.22.1 (inactive)
language-coffee-script, v0.48.1 (inactive)
language-csharp, v0.13.0 (inactive)
language-css, v0.40.1 (inactive)
language-gfm, v0.88.0 (inactive)
language-git, v0.15.0 (inactive)
language-go, v0.43.0 (inactive)
language-html, v0.47.1 (inactive)
language-hyperlink, v0.16.1 (inactive)
language-java, v0.24.0 (inactive)
language-javascript, v0.122.0 (inactive)
language-json, v0.18.3 (inactive)
language-less, v0.29.6 (inactive)
language-make, v0.22.2 (inactive)
language-mustache, v0.13.0 (inactive)
language-objective-c, v0.15.1 (inactive)
language-perl, v0.37.0 (inactive)
language-php, v0.37.3 (inactive)
language-property-list, v0.8.0 (inactive)
language-python, v0.45.1 (inactive)
language-ruby, v0.70.2 (inactive)
language-ruby-on-rails, v0.25.1 (inactive)
language-sass, v0.57.0 (inactive)
language-shellscript, v0.23.0 (inactive)
language-source, v0.9.0 (inactive)
language-sql, v0.25.0 (inactive)
language-text, v0.7.1 (inactive)
language-todo, v0.29.1 (inactive)
language-toml, v0.18.1 (inactive)
language-xml, v0.34.12 (inactive)
language-yaml, v0.27.1 (inactive)

# Dev
No dev packages

Uncaught Error: Requested measurement of a line that is not currently rendered

[Enter steps to reproduce:]

  1. Using split-diff package enable

Atom: 1.19.0-beta1 x64
Electron: 1.6.9
OS: Microsoft Windows 7 Professional
Thrown From: hyperclick package 0.0.40

Stack Trace

Uncaught Error: Requested measurement of a line that is not currently rendered

At C:\Users\groemhildt\AppData\Local\atom\app-1.19.0-beta1\resources\app\src\text-editor-component.js:2137

Error: Requested measurement of a line that is not currently rendered
    at horizontalPositionsToMeasure.forEach (~/AppData/Local/atom/app-1.19.0-beta1/resources/app/src/text-editor-component.js:2135:29)
    at Map.forEach (native)
    at TextEditorComponent.measureHorizontalPositions (~/AppData/Local/atom/app-1.19.0-beta1/resources/app/src/text-editor-component.js:2128:45)
    at TextEditorComponent.measureContentDuringUpdateSync (~/AppData/Local/atom/app-1.19.0-beta1/resources/app/src/text-editor-component.js:373:16)
    at TextEditorComponent.screenPositionForPixelPosition (~/AppData/Local/atom/app-1.19.0-beta1/resources/app/src/text-editor-component.js:2239:18)
    at TextEditorComponent.screenPositionForMouseEvent (~/AppData/Local/atom/app-1.19.0-beta1/resources/app/src/text-editor-component.js:1842:23)
    at HyperclickForTextEditor._getMousePositionAsBufferPosition (/packages/hyperclick/lib/HyperclickForTextEditor.js:298:38)
    at HyperclickForTextEditor._isMouseAtLastWordRange (/packages/hyperclick/lib/HyperclickForTextEditor.js:328:43)
    at HyperclickForTextEditor._onMouseMove (/packages/hyperclick/lib/HyperclickForTextEditor.js:178:16)

Commands

     -9:03.1.0 intentions:highlight (input.hidden-input)
     -9:03.0 core:paste (input.hidden-input)
     -9:02.6.0 intentions:highlight (input.hidden-input)
     -9:02.4.0 core:save (input.hidden-input)
     -6:08.3.0 intentions:highlight (input.hidden-input)
     -6:08.2.0 core:save (input.hidden-input)
     -0:59.5.0 tree-view:open-selected-entry-left (span.name.icon.js-icon.medium-yellow)
     -0:56.4.0 intentions:highlight (input.hidden-input)
     -0:56 command-palette:toggle (input.hidden-input)
  3x -0:52.8.0 core:move-down (input.hidden-input)
     -0:51 core:confirm (input.hidden-input)
     -0:51 split-diff:toggle (input.hidden-input)
     -0:17.4.0 tree-view:open-selected-entry-right (span.name.icon.js-icon.medium-yellow)
     -0:13.9.0 intentions:highlight (input.hidden-input)
     -0:13.5.0 command-palette:toggle (input.hidden-input)
     -0:28.3.0 split-diff:enable (input.hidden-input)

Non-Core Packages

atom-beautify 0.30.3 
atom-jinja2 0.6.0 
atom-typescript 11.0.3 
autocomplete-python 1.9.0 
busy-signal 1.4.3 
docblockr 0.10.5 
file-icons 2.1.7 
git-plus 7.9.3 
git-time-machine 1.5.9 
go-debug 1.4.3 
go-plus 5.5.5 
go-signature-statusbar 1.2.0 
highlight-selected 0.13.1 
hyperclick 0.0.40 
intentions 1.1.2 
kite 0.27.0 
language-batch 0.4.0 
language-markdown 0.23.0 
linter 2.2.0 
linter-eslint 8.2.1 
linter-pycodestyle 2.0.2 
linter-ui-default 1.6.2 
merge-conflicts 1.4.5 
minimap 4.28.2 
minimap-find-and-replace 4.5.2 
minimap-git-diff 4.3.1 
minimap-highlight-selected 4.6.1 
platformio-ide-terminal 2.5.1 
split-diff 1.4.3 

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.