Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
674a89a590
|
|||
|
1bdbdc0031
|
|||
|
19f3788ffc
|
@@ -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
|
||||
|
||||
@@ -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
|
||||
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
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
|
||||
relative to ROOT-DIR."
|
||||
(when ignored-paths
|
||||
(message "%S" ignored-paths)
|
||||
(mapcar (lambda (path)
|
||||
(expand-file-name path root-dir))
|
||||
ignored-paths)))
|
||||
|
||||
Reference in New Issue
Block a user