(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>Feeder - RSS Feed Reader</title> | |
| </head> | |
| <body> | |
| <outline text="Around the Code" title="Around the Code" type="rss" xmlUrl="https://aroundthecode.wordpress.com/feed/" htmlUrl="https://aroundthecode.wordpress.com/feed/" rssfr-favicon="http://s2.googleusercontent.com/s2/favicons?domain=wordpress.com"/> | |
| <outline text="Beatrix Blog" title="Beatrix Blog" type="rss" xmlUrl="https://wiki.corp-apps.com/spaces/createrssfeed.action?types=blogpost&spaces=KIDDO&sort=modified&title=Beatrix+Blog&maxResults=15&amp;publicFeed=false&amp;os_authType=basic&amp;rssType=rss2" htmlUrl="https://wiki.corp-apps.com" rssfr-favicon="https://wiki.corp-apps.com/s/en_GB/5989/aaad9997c145089d7f38b9dea0ac5b91728ef55a.55/_/favicon.ico"/> | |
| <outline text="Blog - ddiguru.com" title="Blog - ddiguru.com" type="rss" xmlUrl="http://ddiguru.com/blog?format=feed&type=rss" htmlUrl="http://ddiguru.com/blog" rssfr-favi |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| app.directive('infiniteScroll', [ | |
| '$rootScope', '$window', '$timeout', function($rootScope, $window, $timeout) { | |
| return { | |
| link: function(scope, elem, attrs) { | |
| var checkWhenEnabled, handler, scrollDistance, scrollEnabled; | |
| $window = angular.element($window); | |
| elem.css('overflow-y', 'scroll'); | |
| elem.css('overflow-x', 'hidden'); | |
| elem.css('height', 'inherit'); | |
| scrollDistance = 0; |
| /** | |
| * Example of using an angular provider to build an api service. | |
| * @author Jeremy Elbourn (jelbourn@google.com) | |
| */ | |
| /** Namespace for the application. */ | |
| var app = {}; | |
| /******************************************************************************/ |