-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/redesign' into redesign
- Loading branch information
Showing
25 changed files
with
210 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
let g:vigun_extra_keywords = ['test'] | ||
let g:vigun_test_keywords = ['test', 'it', 'context', 'describe'] | ||
let g:vjs_tags_enabled = 0 | ||
|
||
let g:vigun_commands = [ | ||
fun! s:watch(cmd) | ||
return "rg --files | entr -r -c sh -c 'echo ".escape('"'.a:cmd.'"', '"')." && ".a:cmd."'" | ||
endf | ||
|
||
let g:vigun_mappings = [ | ||
\ { | ||
\ 'pattern': 'test/.*_test.rb$', | ||
\ 'all': 'rails test #{file}', | ||
\ 'nearest': 'rails test #{file}:#{line}', | ||
\ 'watch-all': s:watch('rails test #{file}'), | ||
\ 'watch-nearest': s:watch('rails test #{file}:#{line}'), | ||
\ }, | ||
\ { | ||
\ 'pattern': 'test/.*_test.rb$', | ||
\ 'normal': 'rails test', | ||
\ 'debug': 'BACKTRACE=1 rails test', | ||
\ 'pattern': 'test/javascript/.*_test.js$', | ||
\ 'all': 'yarn test #{file}', | ||
\ 'nearest': 'yarn test --fgrep #{nearest_test} #{file}', | ||
\ 'debug-all': 'yarn test --interactive #{file}', | ||
\ 'debug-nearest': 'yarn test --interactive --fgrep #{nearest_test} #{file}', | ||
\ } | ||
\] | ||
|
||
command! -nargs=0 Fixturex :cexpr system('./bin/fixturex.rb '. expand('%:t:r') .' '.shellescape(expand('<cword>'))) | copen | ||
|
||
" open report fixture in a split to the right | ||
" nnoremap gj :exec "botright vnew | ||
" test/fixtures/reports/".expand('<cword>').".json"<cr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -375,4 +375,4 @@ RUBY VERSION | |
ruby 2.6.5p114 | ||
|
||
BUNDLED WITH | ||
2.1.4 | ||
2.2.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,9 +115,8 @@ set_meta_tags og: { | |
<div class="Footer-contact"> | ||
<p>Carbon Neutral Map</p> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
<div class="Footer-copyright">© Transition Stroud <time datetime="<%= Date.current.year %>"><%= Date.current.year %></time></div> | ||
</div> | ||
|
||
<div class="Footer-copyright">© Transition Stroud <time datetime="<%= Date.current.year %>"><%= Date.current.year %></time></div> | ||
<div class="Footer-links"> | ||
<div class="Footer-internal_links"> | ||
<%= link_to 'Privacy policy', '/privacy' %> | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.