by Ossi Hanhinen, @ohanhi
with the support of Futurice 💚.
Licensed under CC BY 4.0.
diff -r 661e95466448 src/screen.c | |
--- a/src/screen.c Sun Nov 23 15:57:49 2014 +0100 | |
+++ b/src/screen.c Wed Nov 26 14:19:18 2014 +0900 | |
@@ -2994,7 +2994,7 @@ | |
int syntax_flags = 0; | |
int syntax_seqnr = 0; | |
int prev_syntax_id = 0; | |
- int conceal_attr = hl_attr(HLF_CONCEAL); | |
+ int conceal_attr = 0; | |
int is_concealing = FALSE; |
diff --git a/src/channel.c b/src/channel.c | |
index 2d68287..859a7d0 100644 | |
--- a/src/channel.c | |
+++ b/src/channel.c | |
@@ -4649,6 +4649,83 @@ job_check_ended(void) | |
} | |
} | |
+#ifndef USE_ARGV | |
+ char_u * |
import Html exposing (text) | |
fact : Int -> Int | |
fact n = | |
case n of | |
0 -> 1 | |
1 -> 1 | |
_ -> n * fact(n-1) | |
factorial : Int -> Int |
urlencode() { | |
# urlencode <string> | |
old_lc_collate=$LC_COLLATE | |
LC_COLLATE=C | |
local length="${#1}" | |
for (( i = 0; i < length; i++ )); do | |
local c="${1:$i:1}" | |
case $c in |
package main | |
import "fmt" | |
const nilVowel string = "ْ" | |
var consonants []string = []string{"أ", | |
"ب", | |
"ت", | |
"ث", |
Byobu is a suite of enhancements to tmux, as a command line | |
tool providing live system status, dynamic window management, | |
and some convenient keybindings: | |
F1 * Used by X11 * | |
Shift-F1 Display this help | |
F2 Create a new window | |
Shift-F2 Create a horizontal split | |
Ctrl-F2 Create a vertical split | |
Ctrl-Shift-F2 Create a new session |
pkg upgrade | |
# Install runtime deps | |
pkg install python libzmq libcrypt | |
# Add build deps | |
pkg install python-dev libzmq-dev libcrypt-dev clang | |
pip3 install -U pip | |
pip3 install pyzmq --install-option="--zmq=/usr/lib" | |
pip3 install jupyter |