Download from:
https://github.com/StanAngeloff/dotfiles/blob/master/.vim/after/plugin/fuzzy.vim
Install as ~/.vim/after/plugin/fuzzy.vim.
To trigger a completion, use `` at the end of a line.
| <?php | |
| /** | |
| * (c) PSP UK Group Ltd. <[email protected]> | |
| * | |
| * For the full copyright and license information, | |
| * please view the LICENSE file that was distributed with this source code. | |
| */ | |
| namespace Psp\Query\Aggregate; |
| map j 8j | |
| map k 8k | |
| " Use default Find from Chrome. | |
| map <C-f> <C-v><C-f> |
Download from:
https://github.com/StanAngeloff/dotfiles/blob/master/.vim/after/plugin/fuzzy.vim
Install as ~/.vim/after/plugin/fuzzy.vim.
To trigger a completion, use `` at the end of a line.
| <?php | |
| /** | |
| * (c) PSP UK Group Ltd. <[email protected]> | |
| * | |
| * For the full copyright and license information, | |
| * please view the LICENSE file that was distributed with this source code. | |
| */ | |
| namespace Psp\Bundle\SystemConnectorBridgeBundle\Serializer\Exclusion; |
| <?php | |
| use Guard\Conditions; | |
| function add($a, $b) { | |
| Conditions::requires($a, 'a')->isNumeric(); | |
| Conditions::requires($b, 'b')->isNumeric(); | |
| return $a + $b; | |
| } |
| #!/usr/bin/env bash | |
| # Convert the mysql.sql ODE schema to a PostgreSQL format. | |
| VENDOR_PATH='/vagrant/vendor' | |
| APACHE_ODE_PATH="${VENDOR_PATH}/apache-ode" | |
| cat "${APACHE_ODE_PATH}/sql/mysql.sql" | \ | |
| `: # Drop InnoDB references.` \ |
| #!/usr/bin/env php | |
| <?php | |
| #vim: set ft=php: | |
| $input = ''; | |
| while (( ! feof(STDIN))) { | |
| $input = $input . fgets(STDIN); | |
| } | |
| $patterns = [ |
| org.gnome.desktop.interface.gtk-color-scheme="selected_bg_color:#4677f0;base_color:#080808;bg_color:#101010;text_color:#efefef;fg_color:#f0f0f0;" |
| #!/bin/bash | |
| # If the script fails at any point, don't continue. | |
| set -e | |
| # The `iptables` command. Use 'sudo' if you are running as a non-privileged User. | |
| iptables='sudo /sbin/iptables' | |
| # {{{ Configuration |
| source :rubygems | |
| gem 'sass', '3.2.5' | |
| gem 'compass', :git => 'git://github.com/chriseppstein/compass.git', :ref => '5204c8168a' | |
| # Suggested by the Listen gem. | |
| gem 'rb-inotify', '~> 0.8.8' |