Commit Graph

20 Commits

Author SHA1 Message Date
jakergrossman
7ab82ed1f8 Read html from file 2021-11-30 12:03:33 -06:00
MasonBone
1423360f5d Added Key binding pages 2021-11-30 10:59:17 -06:00
MasonBone
bf094336a4 updated extension.ts 2021-11-29 22:50:57 -06:00
MasonBone
b877bbd67f
Update src/commands.ts
Co-authored-by: Jake Grossman <jake.r.grossman@gmail.com>
2021-11-29 22:37:16 -06:00
MasonBone
acd7a0e442 merged from master 2021-11-18 12:01:53 -06:00
MasonBone
423abba54b Added webpage 2021-11-18 11:38:17 -06:00
Jake Grossman
c0f23d6de1
Add persistent accessibility pane (#9)
* Add persistent accessibility pane

This will facilitate more extensive usage of the menu than the
context menu.
2021-11-18 00:33:55 -06:00
CalWooten95
7f2181d9ea
Update commands.ts 2021-11-17 16:32:35 -06:00
CalWooten95
327ce1eea4
Update commands.ts 2021-11-16 15:24:41 -06:00
CalWooten95
f59be64ab2
Update commands.ts 2021-11-16 15:21:57 -06:00
cdw0311
0dce1dde23 Added current indentation level and line number hotkey 2021-11-16 15:17:41 -06:00
cdw0311
46fef452d8 Added get indentation level and line number hotkey 2021-11-16 15:12:57 -06:00
JosiahMoses
ed6df007fd
Add Navigations Keys (#8)
* Add Navigations Keys

* Update package.json

Fixed Typo

* Update commands.ts

Fixed Typo

Co-authored-by: Jake Grossman <jake.r.grossman@gmail.com>
2021-11-16 11:56:57 -06:00
Jake Grossman
887f88eba6
Add H5 & H4: Listen to Cursor/Line Context (#7)
* Update parser

Implied nodes caused ambiguity when querying for context. Now every line
is considered, even blank lines, to make the process much, *much* easier.

* Update pylex tests

* Add runCursorContext
2021-11-16 11:35:38 -06:00
MasonBone
f4228e3610 added initial webpage 2021-11-09 12:38:01 -06:00
Jake Grossman
6904b5dacf
Refactor command registration (#6)
Refactor command registration

As we continue to register more commands for our extension,
'extensions.ts' has become gross and hard to read. Commands are now
defined in a `commands: Command[]` list in 'commands.ts':

    type Command = {
      name: string, // Name of the command e.g. 'mind-reader.selectTheme'
      callback: () => void // Callback to register for the command
    }

This list is imported into 'extension.ts' and registered
programatically, reducing the required lines of "extra" code required
to register commands in 'extension.ts' from 4 per command to 7 total.
This should help keep 'extension.ts' squeaky clean :)
2021-11-01 15:32:06 -05:00
Jake Grossman
d105544596
Integrate Parser (#4)
Integrate parser
2021-10-26 12:48:04 -05:00
sophiadrewfs
0104e75d2c
added change theme feature (#3)
Add theme extension recommendation and open theme commands.
2021-10-19 12:46:05 -05:00
jakergrossman
25b23c514b Implement increasing font and editor scale
The following commands adjust the font scale in the editor only:

    - mind-reader.increaseFontScale

    - mind-reader.decreaseFontScale

    - mind-reader.resetFontScale

The following commands adjust the overall editor scale:

    - mind-reader.increaseEditorScale

    - mind-reader.decreaseEditorScale

    - mind-reader.resetEditorScale
2021-10-16 19:30:40 -05:00
jakergrossman
214610340f Initial commit 2021-09-25 16:18:41 -05:00