mirror of
https://github.com/esm7/obsidian-vimrc-support.git
synced 2026-07-22 05:00:25 +00:00
Readme and json files for new version
This commit is contained in:
parent
596fb9b9ca
commit
857ca9322f
3 changed files with 13 additions and 3 deletions
12
README.md
12
README.md
|
|
@ -49,7 +49,12 @@ In addition to that:
|
|||
- The plugin skips blank lines and lines starting with Vimscript comments (`" ...`).
|
||||
- Special support for yanking to system clipboard can be activated by `set clipboard=unnamed` (`unnamedplus` will do the same thing).
|
||||
- Support for the `tabstop` Vim option (e.g. `set tabstop=4`).
|
||||
- Custom mapping/unmapping commands in addition to the defaults: `noremap` and `iunmap` (PRs are welcome to implement more :) )
|
||||
- Custom mapping/unmapping commands in addition to the defaults:
|
||||
- `noremap`
|
||||
- `iunmap`
|
||||
- `nunmap`
|
||||
- `vunmap`
|
||||
- PRs are welcome to implement more :)
|
||||
- `exmap [commandName] [command...]`: a command to map Ex commands. This should basically be supported in regular `:map`, but doesn't work with multi-argument commands due to a CodeMirror bug, so this is a workaround.
|
||||
- `obcommand` - execute Obsidian commands, see more details below.
|
||||
- `cmcommand` - execute arbitrary CodeMirror commands, see details below.
|
||||
|
|
@ -282,6 +287,11 @@ See [here](JsSnippets.md) for the full example, and please contribute your own!
|
|||
|
||||
## Changelog
|
||||
|
||||
### 0.8.0
|
||||
|
||||
- The plugin is now marked as supporting mobile; thanks @Geniucker for taking this step, testing and documenting it!
|
||||
- Implemented `nunmap` and `vunmap`, which allow really nice `surround` implementation (see README). Thanks @dohsimpson!
|
||||
|
||||
### 0.7.3
|
||||
|
||||
Fixed an issue in updating the last selection variable, leading to `jsFile` receiving an incorrect argument and (thanks @zjhcn!)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "obsidian-vimrc-support",
|
||||
"name": "Vimrc Support",
|
||||
"version": "0.7.3",
|
||||
"version": "0.8.0",
|
||||
"description": "Auto-load a startup file with Obsidian Vim commands.",
|
||||
"minAppVersion": "0.15.3",
|
||||
"author": "esm",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "obsidian-vimrc-support",
|
||||
"version": "0.7.3",
|
||||
"version": "0.8.0",
|
||||
"description": "Auto-load a startup file with Obsidian Vim commands.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue