Compare commits

3 Commits
0.3.0 ... main

Author SHA1 Message Date
674a89a590 fix: remove `message' left from debugging
All checks were successful
CI / build (26.3) (push) Successful in 2m57s
CI / build (27.2) (push) Successful in 2m53s
CI / build (28.2) (push) Successful in 2m56s
CI / build (29.1) (push) Successful in 2m55s
CI / build (snapshot) (push) Successful in 3m1s
2024-01-09 20:57:58 +01:00
1bdbdc0031 docs: add gif to Readme
All checks were successful
CI / build (26.3) (push) Successful in 3m58s
CI / build (27.2) (push) Successful in 3m34s
CI / build (28.2) (push) Successful in 4m6s
CI / build (29.1) (push) Successful in 3m27s
CI / build (snapshot) (push) Successful in 3m2s
2023-12-29 17:36:30 +01:00
19f3788ffc Revert "chore: simplify tests workflow"
All checks were successful
CI / build (26.3) (push) Successful in 3m58s
CI / build (27.2) (push) Successful in 3m39s
CI / build (28.2) (push) Successful in 5m30s
CI / build (29.1) (push) Successful in 4m46s
CI / build (snapshot) (push) Successful in 3m21s
This reverts commit f3e6987ccd.
2023-12-29 16:20:31 +01:00
4 changed files with 35 additions and 7 deletions

View File

@@ -3,16 +3,43 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version:
- emacs-26-alpine-ci-eask
- emacs-27-alpine-ci-eask
- emacs-28-alpine-ci-eask
- emacs-29-alpine-ci-eask
- emacs-master-alpine-ci-eask
runs-on: ${{ matrix.emacs_version }}
- 26.3
- 27.2
- 28.2
- 29.1
- snapshot
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: cache-nix-conf
with:
path: /etc/nix
key: cache-nix-conf-000
- uses: actions/cache@v3
id: cache-nix-packages
with:
path: /nix
key: cache-nix-packages-000
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- uses: actions/cache@v3
id: cache-eask-packages
with:
path: .eask
key: cache-eask-packages-000
- uses: emacs-eask/setup-eask@master
with:
version: 'snapshot'
- name: "Execute Eask CI"
run: make ci

View File

@@ -12,6 +12,8 @@ associated extension! Lets say you often open files with a ~.org~
extension from your directory =~/org/=, this package will try to find it
insantly for you!
[[file:./assets/quick-find-files.gif]]
* Motivation
I often find myself opening a specific set of files, but they are too
numerous to make each one of them a keybinding. Well, I actually

BIN
assets/quick-find-files.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

View File

@@ -146,7 +146,6 @@ Change members of IGNORED-PATHS so that they are all absolute
paths. Paths that are relative paths are considered to be
relative to ROOT-DIR."
(when ignored-paths
(message "%S" ignored-paths)
(mapcar (lambda (path)
(expand-file-name path root-dir))
ignored-paths)))