mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-18 17:02:06 +03:00
22 lines
278 B
C++
22 lines
278 B
C++
|
#include "option_manager.hh"
|
||
|
|
||
|
#include <sstream>
|
||
|
|
||
|
namespace Kakoune
|
||
|
{
|
||
|
|
||
|
std::string int_to_str(int value)
|
||
|
{
|
||
|
std::ostringstream oss;
|
||
|
oss << value;
|
||
|
return oss.str();
|
||
|
}
|
||
|
|
||
|
GlobalOptionManager::GlobalOptionManager()
|
||
|
: OptionManager()
|
||
|
{
|
||
|
(*this)["tabstop"] = 8;
|
||
|
}
|
||
|
|
||
|
}
|