Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Nov 8, 2024
1 parent 4439f16 commit 10c220e
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/neovim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,10 @@ jobs:
- name: Run tests
env:
THEMIS_VIM: ${{ steps.nvim.outputs.executable }}
# XXX:
# Overwrite %TMP% to point a correct temp directory.
# Note that %TMP% only affects value of 'tempname()' in Windows.
# https://github.saobby.my.eu.orgmunity/t5/GitHub-Actions/TEMP-is-broken-on-Windows/m-p/30432#M427
TMP: 'C:\Users\runneradmin\AppData\Local\Temp'
run: |
./vim-themis/bin/themis
5 changes: 5 additions & 0 deletions .github/workflows/vim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,10 @@ jobs:
- name: Run tests
env:
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
# XXX:
# Overwrite %TMP% to point a correct temp directory.
# Note that %TMP% only affects value of 'tempname()' in Windows.
# https://github.saobby.my.eu.orgmunity/t5/GitHub-Actions/TEMP-is-broken-on-Windows/m-p/30432#M427
TMP: 'C:\Users\runneradmin\AppData\Local\Temp'
run: |
./vim-themis/bin/themis
4 changes: 2 additions & 2 deletions autoload/nerdfont.vim
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
let s:path = fnamemodify(resolve(expand('<sfile>:p')), ':h:h')
let s:path = fnamemodify(resolve(expand('<sfile>:p')), ':h')
let s:sep = has('win32') ? '\' : '/'
let s:json_dir = join([s:path, 'assets', 'json'], s:sep)
let s:json_dir = join([s:path, 'nerdfont', '_assets', 'json'], s:sep)

function! nerdfont#get_json(json_name) abort
let l:json = join([s:json_dir, a:json_name . '.json'], s:sep)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 10c220e

Please sign in to comment.