home/src/buffer_utils.hh
Maxime Coste e2720f1fbe Store timespec for buffer fs timestamps, not just time_t
time_t has a resolution of one second, which cause troubles when
a file changes multiple time during that same second.
2015-09-27 11:55:34 +01:00

44 lines
1.2 KiB
C++

#ifndef buffer_utils_hh_INCLUDED
#define buffer_utils_hh_INCLUDED
#include "buffer.hh"
#include "selection.hh"
namespace Kakoune
{
inline String content(const Buffer& buffer, const Selection& range)
{
return buffer.string(range.min(), buffer.char_next(range.max()));
}
inline BufferIterator erase(Buffer& buffer, const Selection& range)
{
return buffer.erase(buffer.iterator_at(range.min()),
buffer.iterator_at(buffer.char_next(range.max())));
}
inline CharCount char_length(const Buffer& buffer, const Selection& range)
{
return utf8::distance(buffer.iterator_at(range.min()),
buffer.iterator_at(buffer.char_next(range.max())));
}
CharCount get_column(const Buffer& buffer,
CharCount tabstop, ByteCoord coord);
ByteCount get_byte_to_column(const Buffer& buffer, CharCount tabstop,
CharCoord coord);
Buffer* create_fifo_buffer(String name, int fd, bool scroll = false);
Buffer* create_buffer_from_data(StringView data, StringView name,
Buffer::Flags flags,
timespec fs_timestamp = InvalidTime);
void write_to_debug_buffer(StringView str);
}
#endif // buffer_utils_hh_INCLUDED