Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
674a89a590
|
|||
|
1bdbdc0031
|
|||
|
19f3788ffc
|
@@ -3,16 +3,43 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
emacs_version:
|
emacs_version:
|
||||||
- emacs-26-alpine-ci-eask
|
- 26.3
|
||||||
- emacs-27-alpine-ci-eask
|
- 27.2
|
||||||
- emacs-28-alpine-ci-eask
|
- 28.2
|
||||||
- emacs-29-alpine-ci-eask
|
- 29.1
|
||||||
- emacs-master-alpine-ci-eask
|
- snapshot
|
||||||
runs-on: ${{ matrix.emacs_version }}
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- 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"
|
- name: "Execute Eask CI"
|
||||||
run: make ci
|
run: make ci
|
||||||
|
|||||||
@@ -12,6 +12,8 @@ associated extension! Let’s say you often open files with a ~.org~
|
|||||||
extension from your directory =~/org/=, this package will try to find it
|
extension from your directory =~/org/=, this package will try to find it
|
||||||
insantly for you!
|
insantly for you!
|
||||||
|
|
||||||
|
[[file:./assets/quick-find-files.gif]]
|
||||||
|
|
||||||
* Motivation
|
* Motivation
|
||||||
I often find myself opening a specific set of files, but they are too
|
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
|
numerous to make each one of them a keybinding. Well, I actually
|
||||||
|
|||||||
BIN
assets/quick-find-files.gif
Normal file
BIN
assets/quick-find-files.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 85 KiB |
@@ -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
|
paths. Paths that are relative paths are considered to be
|
||||||
relative to ROOT-DIR."
|
relative to ROOT-DIR."
|
||||||
(when ignored-paths
|
(when ignored-paths
|
||||||
(message "%S" ignored-paths)
|
|
||||||
(mapcar (lambda (path)
|
(mapcar (lambda (path)
|
||||||
(expand-file-name path root-dir))
|
(expand-file-name path root-dir))
|
||||||
ignored-paths)))
|
ignored-paths)))
|
||||||
|
|||||||
Reference in New Issue
Block a user