-
-
Notifications
You must be signed in to change notification settings - Fork 189
feat(apis): add new useful methods to OrgApiFile and OrgApiHeadline
#1127
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
Closed
Closed
Changes from 6 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
afccfe3
chore: init nix based setup
ar-at-localhost da2c0f4
feat(api): add headline clock and todo API methods
ar-at-localhost 5985405
feat(api): add OrgFile:insert_headline method to insert headlines int…
ar-at-localhost ef8d0a1
Merge branch 'master' into feat/apis
ar-at-localhost fc40ddc
chore: commit envrc example
ar-at-localhost e9da9d3
Merge branch 'master' into feat/apis
ar-at-localhost f467e76
chore(doc): revert generated api doc changes (auto-generated on release)
ar-at-localhost 1e9db36
test(api): add tests for set_todo and clock operations
ar-at-localhost 27c9f07
chore(nix): migrate from devenv to flake.nix with inlined vim config
ar-at-localhost ad5dd66
feat(api): add promote/demote and headline content retrieval methods
ar-at-localhost 1f270e1
chore: apply stylua formatting fixes
ar-at-localhost 37ba753
fix(api): return Promise from set_todo and cancel_active_clock for co…
ar-at-localhost 6414c38
refactor(api): remove OrgFile:insert_headline and tests from public API
ar-at-localhost 0c8d31e
chore(nix): remove nixvim, inline dev shell into flake.nix directly
ar-at-localhost 3d5784b
docs(plugins): add Orgonomics to extend orgmode section
ar-at-localhost 77c6982
fix(api): fix typo in clock-out doc comment
ar-at-localhost dd16ac5
fix: remove unnecessary do action wrap
ar-at-localhost File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| export DIRENV_WARN_TIMEOUT=20s | ||
|
|
||
| eval "$(devenv direnvrc)" | ||
|
|
||
| # `use devenv` supports the same options as the `devenv shell` command. | ||
| # | ||
| # To silence all output, use `--quiet`. | ||
| # | ||
| # Example usage: use devenv --quiet --impure --option services.postgres.enable:bool true | ||
| use devenv |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,3 +45,20 @@ doc/tags | |
|
|
||
| # Lock file | ||
| .org-ts-lock.json | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are mostly nix specific stuff that you can ignore in your global gitignore. Please remove them. |
||
| # Nvim files (for project scoped sessions / scratches etc --- used by `np`) | ||
| .nvim/ | ||
|
|
||
| # Personal orgfiles (for project scoped tasks etc --- used by `np`) | ||
| orgfiles/ | ||
|
|
||
| # Devenv | ||
| .devenv* | ||
| devenv.local.nix | ||
| devenv.local.yaml | ||
| .pre-commit-config.yaml | ||
|
|
||
| # direnv | ||
| .direnv | ||
| .envrc* | ||
| !.envrc.example | ||
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need this file.