Skip to content

Commit

Permalink
Update sbt errors summary. Add search_in_content_two_independent_words.
Browse files Browse the repository at this point in the history
  • Loading branch information
GMadorell committed Nov 11, 2021
1 parent 1291a48 commit 029b1c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sbt/1.0/plugins/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.duhemm" % "sbt-errors-summary" % "0.6.0")
addSbtPlugin("com.github.duhemm" % "sbt-errors-summary" % "0.6.5")
// addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1")
addSbtPlugin("com.github.tkawachi" % "sbt-repeat" % "0.1.0")

Expand Down
5 changes: 5 additions & 0 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,8 @@ SEARCH HELP
ej: fso email
- fsc (file search inside contents): search inside file contents for a given string
ej: fsc email
- fsc2 (file search inside contents 2 files): search for files which contain both inputs
ej: fsc2 email repository
- fsg (file search globally by name)
ej: fsg my.cnf
Expand Down Expand Up @@ -522,6 +524,9 @@ alias fso=search_and_open
function search_in_content() { rg $1 ; }
alias fsc=search_in_content

function search_in_content_two_independent_words() { rg $1 -l -0 | xargs -0 rg $2 -l ; }
alias fsc2=search_in_content_two_independent_words

function find_by_name_globally() {
if [ $# -eq 1 ]; then
fd -HI "$1" / | fzf
Expand Down

0 comments on commit 029b1c8

Please sign in to comment.