Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/docs.yml → .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
uses: kdheepak/panvimdoc@main
with:
vimdoc: pendulum-nvim
version: "Neovim >= 0.10.0"
version: "Neovim >= 0.11.0"
demojify: true
treesitter: true
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "doc: auto-generate vimdoc"
commit_message: "docs: auto-generate vimdoc"
commit_user_name: "github-actions[bot]"
commit_user_email: "github-actions[bot]@users.noreply.github.com"
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release To GitHub

on:
push:
branches:
- main
workflow_dispatch:

permissions:
contents: write
pull-requests: write
issues: write

jobs:
release:
name: Release To GitHub
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: simple
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,6 @@ luac.out

## Extras
remote/pendulum-nvim
pendulum-server
bin/
.luarc.json
8 changes: 8 additions & 0 deletions BACKLOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# FIX

- Logs twice when switching to new buffer (new buffer is logged twice)

# TODO

- Document v1/v2 differences, how to use v1 if want to stay
- v1 will be tagged in git
11 changes: 0 additions & 11 deletions Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ The metrics report contents are customizable and section items or entire section
These are some potential future ideas that would make for welcome contributions for anyone interested.

- Logging to SQLite database (optionally)
- Telescope integration
- Fuzzy finder integration
- Get stats for specified project, filetype, etc. (Could work well with Telescope)
- Nicer looking popup with custom highlight groups
- Alternative version of popup that uses a terminal buffer and [bubbletea](https://github.com/charmbracelet/bubbletea) (using the table component)
Loading