rebrand to u.nvim
All checks were successful
NeoVim tests / plenary-tests (push) Successful in 8s

This commit is contained in:
2024-10-23 17:01:12 -06:00
parent f3e352ceda
commit 121e0c0f7a
13 changed files with 52 additions and 33 deletions

View File

@@ -1,4 +1,4 @@
local Buffer = require 'tt.buffer'
local Buffer = require 'u.buffer'
local withbuf = loadfile './spec/withbuf.lua'()
describe('Buffer', function()

View File

@@ -1,4 +1,4 @@
local CodeWriter = require 'tt.codewriter'
local CodeWriter = require 'u.codewriter'
describe('CodeWriter', function()
it('should write with indentation', function()

View File

@@ -1,4 +1,4 @@
local Pos = require 'tt.pos'
local Pos = require 'u.pos'
local withbuf = loadfile './spec/withbuf.lua'()
describe('Pos', function()

View File

@@ -1,5 +1,5 @@
local Range = require 'tt.range'
local Pos = require 'tt.pos'
local Range = require 'u.range'
local Pos = require 'u.pos'
local withbuf = loadfile './spec/withbuf.lua'()
describe('Range', function()