This file contains hidden or 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
let s:keyword_patterns = {} | |
let s:keyword_patterns['_'] = '[a-zA-Z_]\k*' | |
let s:keyword_patterns['ruby'] = '[a-zA-Z_@]\w*[!?]?' | |
let s:keyword_patterns['text'] = '[0-9a-zA-Z][0-9a-zA-Z_.-]*' | |
let s:keyword_patterns['zsh'] = '[a-zA-Z_][a-zA-Z_-]*' | |
call deoplete#custom#option('keyword_patterns', s:keyword_patterns) |
This file contains hidden or 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
Error loading /root/.config/pry/pryrc: undefined method `file=' for #<Pry::History:0x00005624d9ce6298> | |
Did you mean? filter | |
/root/.config/pry/pryrc:1:in `__pry__' |
This file contains hidden or 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: https://github.com/atton/dockerfiles/blob/1566be5489c34ba743dd5735f6584d3ef213cdb5/.github/workflows/build-and-push.yml | |
name: Build and Push Docker Images | |
on: push | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: |
OlderNewer