How To Find Commits With Code Containing a String
1 |
git log --pickaxe-regex -p --color-words -S "theSearchString" |
1 |
git log --pickaxe-regex -p --color-words -S "theSearchString" |
WordPress Admin -> Mega Menu -> Menu Themes Select the theme to edit, then scroll to the bottom and edit the area for the CSS Editor under Custom Styling. Add the following to affect the Menu Bar type menu:
1 2 3 4 5 6 |
#{$wrap} #{$menu} > li.mega-current-page-ancestor.mega-menu-item-has-children > a.mega-menu-link, #{$wrap} #{$menu} li.mega-current_page_item > a.mega-menu-link, #{$wrap} #{$menu} li.mega-current-menu-item > a.mega-menu-link { color: #FDBE5E; } |
Use the above pattern to affect other menu types…as always, YMMV.
Add the following line to your .vimrc file: [code]hi Search ctermfg=white ctermbg=lightgreen guifg=white guibg=black[/code] Color List Color Schemes Color Scroller Use :noh to clear the last search highlight. Place the following in your ~/.vimrc to map the F3 key to a highlight toggle: [code]nnoremap <F3> :set hlsearch!<CR>[/code]