rabbit-slide-wikimatze-vim-and-flog 2019.03.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1c04f6a8b15259033995cb3e0ba53a779d4f7742
4
+ data.tar.gz: eac1a2a676708b7a35ea56cccc248bce93d07ffa
5
+ SHA512:
6
+ metadata.gz: c4e168319d5f742b763cd34d30254182ea62b8f4001adcefe03f344b0db291bde8de54c7193af422688d7363db642674dbd3c1ea579a959c9bc2ae18e4d993f7
7
+ data.tar.gz: 6d89cf460a024ba7220e618be0bba9a2f158b1a0375a959d4cf395f1e694ecce180f44b9a6c9f050b5ec14a2806c6246b3e5b6e1cae923921dc2ffbbeffe27ac
data/.rabbit ADDED
@@ -0,0 +1 @@
1
+ vim-and-flog.md
@@ -0,0 +1,24 @@
1
+ # Vim and flog
2
+
3
+ How to use flog to browse a git repo. Gave this talk at the Vimberlin March 2019 meetup https://vimberlin.de/march-2019-meetup/
4
+
5
+ ## For author
6
+
7
+ ### Show
8
+
9
+ rake
10
+
11
+ ### Publish
12
+
13
+ rake publish
14
+
15
+ ## For viewers
16
+
17
+ ### Install
18
+
19
+ gem install rabbit-slide--vim-and-flog
20
+
21
+ ### Show
22
+
23
+ rabbit rabbit-slide--vim-and-flog.gem
24
+
@@ -0,0 +1,17 @@
1
+ require "rabbit/task/slide"
2
+
3
+ # Edit ./config.yaml to customize meta data
4
+
5
+ spec = nil
6
+ Rabbit::Task::Slide.new do |task|
7
+ spec = task.spec
8
+ # spec.files += Dir.glob("doc/**/*.*")
9
+ # spec.files -= Dir.glob("private/**/*.*")
10
+ # spec.add_runtime_dependency("YOUR THEME")
11
+ end
12
+
13
+ desc "Tag #{spec.version}"
14
+ task :tag do
15
+ sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
16
+ sh("git", "push", "--tags")
17
+ end
@@ -0,0 +1,19 @@
1
+ ---
2
+ id: vim-and-flog
3
+ base_name: vim-and-flog
4
+ tags: []
5
+ presentation_date: 2019/03/29
6
+ version: 2019.03.29
7
+ licenses: []
8
+ slideshare_id: slides-vim-andflog
9
+ speaker_deck_id: flog-a-new-git-branch-extension
10
+ ustream_id:
11
+ vimeo_id:
12
+ youtube_id:
13
+ author:
14
+ markup_language: :markdown
15
+ name: Matthias Günther
16
+ email: matthias@wikimatze.de
17
+ rubygems_user: wikimatze
18
+ slideshare_user: MatthiasGnther3
19
+ speaker_deck_user: wikimatze
@@ -0,0 +1,53 @@
1
+ # vim-flog
2
+
3
+ author
4
+ : Matthias Günther
5
+
6
+
7
+ # Features
8
+
9
+ - find and checkout Branches (with autocompletion)
10
+ - explore history
11
+
12
+
13
+ # Custom mappings
14
+
15
+ - normally `ZZ` to close windows
16
+ - I prefer pressing `q`:
17
+
18
+ ```vim
19
+ augroup flog
20
+ au FileType git map <buffer><silent>q :bw<cr>
21
+ au FileType floggraph map <buffer><silent>q :bw<cr>
22
+ augroup END
23
+ ```
24
+
25
+
26
+ # Configs
27
+
28
+ - change display format of git messages:
29
+
30
+ ```vim
31
+ let g:flog_default_date_format = 'format:%Y-%m-%d %H:%M:%S'
32
+ ```
33
+
34
+
35
+ # Get all commits concerning a file
36
+
37
+ ```vim
38
+ :Flog -path=archive.md
39
+ ```
40
+
41
+
42
+ # Comparison to gitv
43
+
44
+ - only necessary features
45
+ - loads fast
46
+ - has API to be able to easy add new features
47
+
48
+
49
+ # References:
50
+
51
+ - <https://github.com/rbong/vim-flog>
52
+ - {::note}<https://medium.com/@r.l.bongers/announcing-flog-a-new-git-branch-viewer-for-vim-from-the-former-maintainer-of-gitv-e9db68977810>{:/note}
53
+
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rabbit-slide-wikimatze-vim-and-flog
3
+ version: !ruby/object:Gem::Version
4
+ version: 2019.03.29
5
+ platform: ruby
6
+ authors:
7
+ - Matthias Günther
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-04-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rabbit
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.2
27
+ description: How to use flog to browse a git repo. Gave this talk at the Vimberlin
28
+ March 2019 meetup https://vimberlin.de/march-2019-meetup/
29
+ email:
30
+ - matthias@wikimatze.de
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - ".rabbit"
36
+ - README.md
37
+ - Rakefile
38
+ - config.yaml
39
+ - pdf/vim-and-flog-vim-and-flog.pdf
40
+ - vim-and-flog.md
41
+ homepage: http://slide.rabbit-shocker.org/authors/wikimatze/vim-and-flog/
42
+ licenses: []
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 2.6.14
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: Vim and flog
64
+ test_files: []