index
:
kakoune.git
master
Unnamed repository; edit this file 'description' to name the repository.
Mike Vink
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
buffer_manager.cc
Age
Commit message (
Expand
)
Author
2015-06-01
Port more code to use the format function instead of adhoc string concat
Maxime Coste
2015-04-23
Fix :open bug that could set a deleted buffer as the last used one
Maxime Coste
2015-03-12
Avoid calling real_path when not needed in BufferManager::get_buffer_ifp
Maxime Coste
2015-02-23
Use RefPtr as SafePtr backend
Maxime Coste
2015-01-26
Try to improve ga behaviour
Maxime Coste
2014-12-23
Extract complete_buffer_name as a free function in commands.cc
Maxime Coste
2014-12-23
Unify completion from container content logic
Maxime Coste
2014-10-13
Do not assert on SIGTERM and backup modified buffers on signal induced termin...
Maxime Coste
2014-08-18
Do not escape completions in completer functions let the client decide
Maxime Coste
2014-08-12
Defer deletion of buffers to after the event loop
Maxime Coste
2014-08-03
Fix buffer name completion when basename only
Maxime Coste
2014-07-31
Buffer completion match directory names as well for subsequence match
Maxime Coste
2014-04-19
Use StringView in BufferManager
Maxime Coste
2014-04-18
Use StringView for completion functions
Maxime Coste
2014-04-07
rename BufferManager::complete_buffername to complete_buffer_name
Maxime Coste
2013-11-10
Fix warnings
Maxime Coste
2013-09-25
Do not take directories into account when completing buffer name
Maxime Coste
2013-09-24
use subsequence instead of regex matching for buffer completion
Maxime Coste
2013-09-23
Add prefix_match function and use it instead of adhoc code
Maxime Coste
2013-04-10
Use the buffer manager to delete buffer, throw when a client is inserting
Maxime Coste
2013-04-09
sort includes directives
Maxime Coste
2013-04-09
rename assert to kak_assert to avoid collisions
Maxime Coste
2013-03-25
move absolute path logic to Buffer class
Maxime Coste
2013-03-22
BufferManager notify the ClientManager when a buffer dies
Maxime Coste
2013-03-21
BufferManager: replace Buffer* get_buffer with Buffer& get_buffer
Maxime Coste
2012-12-28
BufferManager: registering buffers are front inserted
Maxime Coste
2012-10-11
use ByteCount instead of CharCount when we are really counting bytes
Maxime Coste
2012-09-28
Change buffer order based on the last one used
Maxime Coste
2012-08-29
escape whitespaces in filename or buffername completions
Maxime Coste
2012-08-29
remove regex.hh, define Regex directly in string.hh
Maxime Coste
2012-08-28
BufferManager: protect complete_buffername from regex_error
Maxime Coste
2012-08-23
use a strongly typed int CharCount for character counts
Maxime Coste
2012-08-14
complete_buffername try regex matching when prefix matching does not work
Maxime Coste
2012-08-08
Refactor BufferManager
Maxime Coste
2012-06-28
BufferManager use safe_ptr to reference the Buffers
Maxime Coste
2012-06-14
BufferManager deletes remaining buffers in his destructor
Maxime Coste
2012-04-14
replace std::string references with String
Maxime Coste
2012-03-26
BufferManager no longer owns buffers, only register them
Maxime Coste
2011-11-12
Completion: decentralise, move buffer name completion to BufferManager
Maxime Coste
2011-09-23
Utils: Singleton template and migration of the BufferManager
Maxime Coste
2011-09-09
assert: custom implementation
Maxime Coste
2011-09-09
exception: refactoring
Maxime Coste
2011-09-08
Add a BufferManager singleton class, handling buffer lifetime
Maxime Coste