SYMBOL INDEX (140 symbols across 10 files) FILE: commands.go type CommandFunc (line 14) | type CommandFunc function scrollView (line 134) | func scrollView(v *gocui.View, dy int) error { function scrollViewUp (line 147) | func scrollViewUp(_ *gocui.Gui, v *gocui.View) error { function scrollViewDown (line 151) | func scrollViewDown(_ *gocui.Gui, v *gocui.View) error { function pageUp (line 155) | func pageUp(_ *gocui.Gui, v *gocui.View) error { function pageDown (line 161) | func pageDown(_ *gocui.Gui, v *gocui.View) error { function deleteLine (line 167) | func deleteLine(_ *gocui.Gui, v *gocui.View) error { function deleteWord (line 188) | func deleteWord(_ *gocui.Gui, v *gocui.View) error { function getCharCategory (line 213) | func getCharCategory(chr rune) int { function quit (line 227) | func quit(g *gocui.Gui, v *gocui.View) error { function openEditor (line 231) | func openEditor(g *gocui.Gui, v *gocui.View, editor string) error { FILE: config/config.go type Duration (line 22) | type Duration struct method UnmarshalText (line 26) | func (d *Duration) UnmarshalText(text []byte) error { type Config (line 32) | type Config struct type GeneralOptions (line 37) | type GeneralOptions struct function init (line 118) | func init() { function LoadConfig (line 124) | func LoadConfig(configFile string) (*Config, error) { function GetDefaultConfigLocation (line 157) | func GetDefaultConfigLocation() string { FILE: formatter/binary.go type binaryFormatter (line 10) | type binaryFormatter struct method Format (line 13) | func (f *binaryFormatter) Format(writer io.Writer, data []byte) error { method Title (line 18) | func (f *binaryFormatter) Title() string { method Searchable (line 22) | func (f *binaryFormatter) Searchable() bool { method Search (line 26) | func (f *binaryFormatter) Search(q string, body []byte) ([]string, err... FILE: formatter/formatter.go type ResponseFormatter (line 11) | type ResponseFormatter interface function New (line 18) | func New(appConfig *config.Config, contentType string) ResponseFormatter { FILE: formatter/formatter_test.go function TestFormat (line 12) | func TestFormat(t *testing.T) { function TestTitle (line 54) | func TestTitle(t *testing.T) { function TestSearchable (line 80) | func TestSearchable(t *testing.T) { function configFixture (line 98) | func configFixture(jsonEnabled bool) *config.Config { FILE: formatter/html.go type htmlFormatter (line 12) | type htmlFormatter struct method Format (line 17) | func (f *htmlFormatter) Format(writer io.Writer, data []byte) error { method Title (line 30) | func (f *htmlFormatter) Title() string { method Search (line 34) | func (f *htmlFormatter) Search(q string, body []byte) ([]string, error) { FILE: formatter/json.go type jsonFormatter (line 12) | type jsonFormatter struct method Format (line 17) | func (f *jsonFormatter) Format(writer io.Writer, data []byte) error { method Title (line 29) | func (f *jsonFormatter) Title() string { method Search (line 33) | func (f *jsonFormatter) Search(q string, body []byte) ([]string, error) { FILE: formatter/text.go type TextFormatter (line 8) | type TextFormatter struct method Format (line 11) | func (f *TextFormatter) Format(writer io.Writer, data []byte) error { method Title (line 16) | func (f *TextFormatter) Title() string { method Searchable (line 20) | func (f *TextFormatter) Searchable() bool { method Search (line 24) | func (f *TextFormatter) Search(q string, body []byte) ([]string, error) { FILE: status-line.go type StatusLine (line 11) | type StatusLine struct method Update (line 52) | func (s *StatusLine) Update(v *gocui.View, a *App) { type StatusLineFunctions (line 15) | type StatusLineFunctions struct method Version (line 19) | func (_ *StatusLineFunctions) Version() string { method Duration (line 23) | func (s *StatusLineFunctions) Duration() string { method HistorySize (line 30) | func (s *StatusLineFunctions) HistorySize() string { method RequestNumber (line 34) | func (s *StatusLineFunctions) RequestNumber() string { method SearchType (line 42) | func (s *StatusLineFunctions) SearchType() string { method DisableRedirect (line 60) | func (s *StatusLineFunctions) DisableRedirect() string { function NewStatusLine (line 67) | func NewStatusLine(format string) (*StatusLine, error) { FILE: wuzz.go constant VERSION (line 35) | VERSION = "0.5.0" constant TIMEOUT_DURATION (line 37) | TIMEOUT_DURATION = 5 constant WINDOWS_OS (line 38) | WINDOWS_OS = "windows" constant SEARCH_PROMPT (line 39) | SEARCH_PROMPT = "search> " constant ALL_VIEWS (line 42) | ALL_VIEWS = "" constant URL_VIEW (line 44) | URL_VIEW = "url" constant URL_PARAMS_VIEW (line 45) | URL_PARAMS_VIEW = "get" constant REQUEST_METHOD_VIEW (line 46) | REQUEST_METHOD_VIEW = "method" constant REQUEST_DATA_VIEW (line 47) | REQUEST_DATA_VIEW = "data" constant REQUEST_HEADERS_VIEW (line 48) | REQUEST_HEADERS_VIEW = "headers" constant STATUSLINE_VIEW (line 49) | STATUSLINE_VIEW = "status-line" constant SEARCH_VIEW (line 50) | SEARCH_VIEW = "search" constant RESPONSE_HEADERS_VIEW (line 51) | RESPONSE_HEADERS_VIEW = "response-headers" constant RESPONSE_BODY_VIEW (line 52) | RESPONSE_BODY_VIEW = "response-body" constant SEARCH_PROMPT_VIEW (line 54) | SEARCH_PROMPT_VIEW = "prompt" constant POPUP_VIEW (line 55) | POPUP_VIEW = "popup_view" constant AUTOCOMPLETE_VIEW (line 56) | AUTOCOMPLETE_VIEW = "autocomplete_view" constant ERROR_VIEW (line 57) | ERROR_VIEW = "error_view" constant HISTORY_VIEW (line 58) | HISTORY_VIEW = "history" constant SAVE_DIALOG_VIEW (line 59) | SAVE_DIALOG_VIEW = "save-dialog" constant SAVE_RESPONSE_DIALOG_VIEW (line 60) | SAVE_RESPONSE_DIALOG_VIEW = "save-response-dialog" constant LOAD_REQUEST_DIALOG_VIEW (line 61) | LOAD_REQUEST_DIALOG_VIEW = "load-request-dialog" constant SAVE_REQUEST_FORMAT_DIALOG_VIEW (line 62) | SAVE_REQUEST_FORMAT_DIALOG_VIEW = "save-request-format-dialog" constant SAVE_REQUEST_DIALOG_VIEW (line 63) | SAVE_REQUEST_DIALOG_VIEW = "save-request-dialog" constant SAVE_RESULT_VIEW (line 64) | SAVE_RESULT_VIEW = "save-result" constant METHOD_LIST_VIEW (line 65) | METHOD_LIST_VIEW = "method-list" constant HELP_VIEW (line 66) | HELP_VIEW = "help" type position (line 82) | type position struct method getCoordinate (line 540) | func (p position) getCoordinate(max int) int { type viewPosition (line 88) | type viewPosition struct type viewProperties (line 160) | type viewProperties struct constant DEFAULT_METHOD (line 287) | DEFAULT_METHOD = http.MethodGet constant MIN_WIDTH (line 319) | MIN_WIDTH = 60 constant MIN_HEIGHT (line 320) | MIN_HEIGHT = 20 type Request (line 323) | type Request struct type App (line 336) | type App struct method getResponseViewEditor (line 534) | func (a *App) getResponseViewEditor(g *gocui.Gui) gocui.Editor { method Layout (line 564) | func (a *App) Layout(g *gocui.Gui) error { method NextView (line 621) | func (a *App) NextView(g *gocui.Gui, v *gocui.View) error { method PrevView (line 626) | func (a *App) PrevView(g *gocui.Gui, v *gocui.View) error { method setView (line 631) | func (a *App) setView(g *gocui.Gui) error { method setViewByName (line 637) | func (a *App) setViewByName(g *gocui.Gui, name string) error { method SubmitRequest (line 728) | func (a *App) SubmitRequest(g *gocui.Gui, _ *gocui.View) error { method PrintBody (line 945) | func (a *App) PrintBody(g *gocui.Gui) { method setKey (line 1019) | func (a *App) setKey(g *gocui.Gui, keyStr, commandStr, viewName string... method printViewKeybindings (line 1044) | func (a *App) printViewKeybindings(v io.Writer, viewName string) { method SetKeys (line 1062) | func (a *App) SetKeys(g *gocui.Gui) error { method closePopup (line 1188) | func (a *App) closePopup(g *gocui.Gui, viewname string) { method CreatePopupView (line 1199) | func (a *App) CreatePopupView(name string, width, height int, g *gocui... method LoadRequest (line 1225) | func (a *App) LoadRequest(g *gocui.Gui, loadLocation string) (err erro... method ToggleHistory (line 1286) | func (a *App) ToggleHistory(g *gocui.Gui, _ *gocui.View) (err error) { method SaveRequest (line 1323) | func (a *App) SaveRequest(g *gocui.Gui, _ *gocui.View) (err error) { method ToggleMethodList (line 1385) | func (a *App) ToggleMethodList(g *gocui.Gui, _ *gocui.View) (err error) { method OpenSaveDialog (line 1411) | func (a *App) OpenSaveDialog(title string, g *gocui.Gui, save func(g *... method OpenSaveResultView (line 1438) | func (a *App) OpenSaveResultView(saveResult string, g *gocui.Gui) (err... method restoreRequest (line 1459) | func (a *App) restoreRequest(g *gocui.Gui, idx int, isCleanToggle bool) { method LoadConfig (line 1500) | func (a *App) LoadConfig(configPath string) error { method ParseArgs (line 1532) | func (a *App) ParseArgs(g *gocui.Gui, args []string) error { method hasHeader (line 1752) | func (a *App) hasHeader(g *gocui.Gui, h string) bool { method InitConfig (line 1770) | func (a *App) InitConfig() { type ViewEditor (line 345) | type ViewEditor struct method Edit (line 375) | func (e *ViewEditor) Edit(v *gocui.View, key gocui.Key, ch rune, mod g... type AutocompleteEditor (line 352) | type AutocompleteEditor struct method Edit (line 422) | func (e *AutocompleteEditor) Edit(v *gocui.View, key gocui.Key, ch run... type SearchEditor (line 359) | type SearchEditor struct method Edit (line 488) | func (e *SearchEditor) Edit(v *gocui.View, key gocui.Key, ch rune, mod... type singleLineEditor (line 364) | type singleLineEditor struct method Edit (line 497) | func (e singleLineEditor) Edit(v *gocui.View, key gocui.Key, ch rune, ... function init (line 368) | func init() { function getLastSymbol (line 405) | func getLastSymbol(str string) string { function completeFromSlice (line 409) | func completeFromSlice(str string, completions []string) []string { function setView (line 544) | func setView(g *gocui.Gui, viewName string) (*gocui.View, error) { function setViewProperties (line 555) | func setViewProperties(v *gocui.View, name string) { function popup (line 647) | func popup(g *gocui.Gui, msg string) { function minInt (line 666) | func minInt(x, y int) int { function closeAutocomplete (line 673) | func closeAutocomplete(g *gocui.Gui) { function showAutocomplete (line 677) | func showAutocomplete(completions []string, left, top, maxWidth, maxHeig... function writeSortedHeaders (line 715) | func writeSortedHeaders(output io.Writer, h http.Header) { function parseKey (line 996) | func parseKey(k string) (interface{}, gocui.Modifier, error) { function refreshStatusLine (line 1785) | func refreshStatusLine(a *App, g *gocui.Gui) { function initApp (line 1792) | func initApp(a *App, g *gocui.Gui) { function getViewValue (line 1800) | func getViewValue(g *gocui.Gui, name string) string { function setViewDefaults (line 1808) | func setViewDefaults(v *gocui.View) { function setViewTextAndCursor (line 1813) | func setViewTextAndCursor(v *gocui.View, s string) { function help (line 1819) | func help() { function main (line 1857) | func main() { function exportJSON (line 1938) | func exportJSON(r Request) []byte { function exportCurl (line 1954) | func exportCurl(r Request) []byte {