Skip to content
This repository has been archived by the owner on Sep 23, 2021. It is now read-only.

Commit

Permalink
Merge branch 'prepare-for-0.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
kana committed Nov 29, 2013
2 parents 7d0eab5 + eb71875 commit 8b71a03
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 12 deletions.
29 changes: 21 additions & 8 deletions doc/tabpagecd.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
*tabpagecd.txt* Use one tab page per project
*tabpagecd.txt* Turn :cd into :tabpagecd, to use one tab page per project

Version @@VERSION@@
Version 0.0.2
Script ID: 4201
Copyright (C) 2012 Kana Natsuno <http://whileimautomaton.net/>
License: So-called MIT/X license {{{
Copyright (C) 2012-2013 Kana Natsuno <http://whileimautomaton.net/>
License: MIT License {{{
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
Expand Down Expand Up @@ -39,10 +39,18 @@ Changelog |tabpagecd-changelog|
==============================================================================
INTRODUCTION *tabpagecd-introduction*

*tabpagecd* is a Vim plugin to use one tab page per project. It records
a current working directory for each tab page, and it changes the current
working directory whenever you activate another tab page. So that it makes
easy to deal with project-local files.
*tabpagecd* is a Vim plugin to turn `:cd` into :tabpagecd. In other words,

- The current working directory for each tab page is automatically recorded.
- The current working directory is automatically restored to the recorded one
whenever you activate another tab page.

When you work on multiple projects at once, you probably use |tab-page| to
organize files of each project. For example, tab page 1 for files in project
A, while tab page 2 for files in project B. In this case, you might want to
set the current working directory per tab page to quickly manipulate files in
each project. This plugin makes :cd local to a tab page, like `:lcd` for
windows. So that it makes easy to deal with project-local files.


Requirements:
Expand Down Expand Up @@ -95,6 +103,11 @@ BUGS *tabpagecd-bugs*
==============================================================================
CHANGELOG *tabpagecd-changelog*

0.0.2 2013-11-29T23:09:35+09:00 *tabpagecd-changelog-0.0.2*
- Fix a bug. Old versions fail to restore the current working
directory for a tab page if the recorded directory path contains
spaces or other fancy characters.

0.0.1 2012-09-01T13:25:17+09:00 *tabpagecd-changelog-0.0.1*
- Tidy up the document a bit.

Expand Down
8 changes: 4 additions & 4 deletions plugin/tabpagecd.vim
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
" tabpagecd - Use one tab page per project
" Version: @@VERSION@@
" Copyright (C) 2012 Kana Natsuno <http://whileimautomaton.net/>
" License: So-called MIT/X license {{{
" tabpagecd - Turn :cd into :tabpagecd, to use one tab page per project
" Version: 0.0.2
" Copyright (C) 2012-2013 Kana Natsuno <http://whileimautomaton.net/>
" License: MIT License {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
" "Software"), to deal in the Software without restriction, including
Expand Down

0 comments on commit 8b71a03

Please sign in to comment.