-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add text/uri-list support for paste_img
#829
Open
ottersome
wants to merge
54
commits into
epwalsh:main
Choose a base branch
from
ottersome:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…handling feat: add table utility functions for debugging fix: update grep and find_files to properly handle callbacks refactor: streamline picker options and configuration style: improve code organization and consistency Breaking changes: - Modified behavior of grep and find_files to prioritize callbacks
…dling - Remove unused debug helper functions - Add proper type annotations for picker options - Improve action mapping logic with notes_mappings - Fix path handling in file and grep operations - Add debug logging for better troubleshooting - Enhance callback handling for picker actions
- access dir.filename property instead of dir directly - convert Path object to string for cwd option
Neovim 0.10.4 changed the name of the Linux binary in their realeases, which was breaking the github actions worflow.
…-neovim-nightly Changed the name of the linux binary in github actions
There is no GH_PAT configured in the secrets for this new repo. Changed the variable to GITHUB_TOKEN to check if it has enough permissions, if it doesn't we will need to create a PAT and add it to the repo secrets.
…-neovim-nightly Trying to fix github actions when merging to main
The GH_PAT was indeed necessary so I created it and added it to the repo's secrets
…-neovim-nightly Revert "Trying to fix github actions when merging to main"
feat(completion): blink.cmp support
implementing snack picker
…m-epwalsh chore/update docs from epwalsh
…om-epwalsh [chore] update changelog link
doc: remove some verbose description in plugin dependencies
doc: add instruction for rocks.nvim, warning for packer.nvim
Fix bug where ObsidianNewFromTemplate does not respect note_id_func
feat: explain the fork in readme, closes epwalsh#11
* fix: parser treats "Nan" as a number instead of a string
nit: remove tracking from youtube URL
…ad (epwalsh#30) * update deprecated method * update for backwards compatibility
If your templates folder is configured as e. g. 'Templates' and you happen to have a folder of the same name in $CWD, this should guard against picking the wrong folder.
* feat: add types and improve docs for util.toggle_checkbox() * feat: add tests for toggle_checkbox * feat: add util.is_checkbox() (and tests) This is in preparation to refactor and fix toggle_checkbox. Also add doc+typet to util.is_img() * refactor: make toggle_checkbox tests more uniform * feat: add toggle_checkbox test case for lists starting with `*` Note: they currently fail as only `-` lists are supported * feat: toggle_checkbox supports numbered lists (with tests) Use the preciously introduced helper functions. * refactor: toggle_checkbox tests are more explicit Less logic in the tests; easier to read. * doc: changelog * feat: is_checkbox() supports `1) item` and `+ item` With tests again. * feat: more tests for toggle_checkbox()
* feat: makefile is friendlier - it is self documenting: just call `make` to see all targets - it gets missing dependencies * fix(CICD): adjust github CI to new makefile logic
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When copying images from Nautilus or Thunar, these programs actually copy to the clipboard in the form of
text/uri-list
.ObsidianPasteImg
only searches forimage/png
data within the clipboard usingwl-paste --list
. This update adds support to inspect the list, extract the first image, and add it towl-clipboard
asan image. Ultimately, you can copy from file browser to neovim.