Commit fd13a176 authored by Murukesh Mohanan's avatar Murukesh Mohanan

attempt to manage fb comments

parent 18530e7f
AddType text/html .shtml
AddHandler server-parsed .shtml
Options +Includes
XBitHack Full
......@@ -19,6 +19,7 @@
<link rel="stylesheet" href="{{ site.base-url }}/styles/{{ pagestyle }}.css" type="text/css">
<!-- Web Fonts FTW! -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ubuntu">
<meta property="fb:app_id" content="658633094275731"/>
</head>
<body>
<div id="container">
......
......@@ -26,7 +26,9 @@ Vim `man`'s pager. Why did I submit myself to such cruel and unusual punishment?
The post suggested setting `$MANPAGER` to a combination of `col` and `vim`:
export MANPAGER="col -b | vim -c 'set ft=man nomod nolist ignorecase' -"
```sh
export MANPAGER="col -b | vim -c 'set ft=man nomod nolist ignorecase' -"
```
For decidedly non-obvious reasons, it's not likely to work for you. Why?
Because GNU `man` doesn't support piped commands in `$MANPAGER` -- BSD's `man`
......@@ -164,8 +166,9 @@ map <expr> <CR> winnr('$') == 1 ? ':vs<CR><C-]>' : '<C-]>'
{% endhighlight %}
with:
```sh
MANPAGER="vim -"
export MANPAGER="vim -"
```
Beautiful!
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment